isdata-customer-sdk 0.2.64 → 0.2.66
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.common.js
CHANGED
|
@@ -30197,7 +30197,7 @@ const transformPortalData = (datas, menuTypes, filterObjectMap) => {
|
|
|
30197
30197
|
sort: data.sort,
|
|
30198
30198
|
actionType: data.actionType,
|
|
30199
30199
|
url: data.url,
|
|
30200
|
-
iconClass: data.image,
|
|
30200
|
+
iconClass: data.image ? data.image : "el-icon-menu",
|
|
30201
30201
|
parent_id: data.parent_id,
|
|
30202
30202
|
children: [],
|
|
30203
30203
|
app_id: data.app_id,
|
|
@@ -30594,10 +30594,11 @@ const getMappingAppInfoByID = async (appID, groupID) => {
|
|
|
30594
30594
|
*
|
|
30595
30595
|
* @returns 获取门户登录页面的公告信息
|
|
30596
30596
|
*/
|
|
30597
|
-
const getLoginPageNotices = async
|
|
30597
|
+
const getLoginPageNotices = async groupID => {
|
|
30598
30598
|
let queryData = {
|
|
30599
30599
|
param: {
|
|
30600
|
-
id: "1005"
|
|
30600
|
+
id: "1005",
|
|
30601
|
+
groupID: groupID // 集团ID
|
|
30601
30602
|
}
|
|
30602
30603
|
};
|
|
30603
30604
|
let resultData = await request.post(`/dataservice/rest/orchestration/getNoticeInfosByAppTypeID`, queryData);
|