isdata-customer-sdk 0.1.42 → 0.1.43
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.js +22 -2
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +22 -2
- package/dist/index.umd.js.map +1 -1
- package/dist/index.umd.min.js +1 -1
- package/dist/index.umd.min.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -22257,7 +22257,8 @@ __webpack_require__.d(__webpack_exports__, {
|
|
|
22257
22257
|
registerEventListener: function() { return /* reexport */ registerEventListener; },
|
|
22258
22258
|
removeEventListener: function() { return /* reexport */ removeEventListener; },
|
|
22259
22259
|
setPortalPageConfig: function() { return /* reexport */ setPortalPageConfig; },
|
|
22260
|
-
updateUserSelectPortal: function() { return /* reexport */ updateUserSelectPortal; }
|
|
22260
|
+
updateUserSelectPortal: function() { return /* reexport */ updateUserSelectPortal; },
|
|
22261
|
+
validateSSOPageLoaded: function() { return /* reexport */ validateSSOPageLoaded; }
|
|
22261
22262
|
});
|
|
22262
22263
|
|
|
22263
22264
|
;// ./node_modules/@vue/cli-service/lib/commands/build/setPublicPath.js
|
|
@@ -22541,6 +22542,25 @@ const getMenuDatasByRoleIDs = async (role_ids, group_id) => {
|
|
|
22541
22542
|
return result;
|
|
22542
22543
|
};
|
|
22543
22544
|
|
|
22545
|
+
/**
|
|
22546
|
+
* 校验SSO页面加载是否正确
|
|
22547
|
+
* @param id GroupID
|
|
22548
|
+
*
|
|
22549
|
+
*/
|
|
22550
|
+
const validateSSOPageLoaded = async (app_id, appSecret, returnUrl) => {
|
|
22551
|
+
let queryData_groupData = {
|
|
22552
|
+
"param": {
|
|
22553
|
+
"app_id": app_id,
|
|
22554
|
+
"appSecret": appSecret,
|
|
22555
|
+
"returnUrl": returnUrl
|
|
22556
|
+
}
|
|
22557
|
+
};
|
|
22558
|
+
let result = await request.post(`/dataservice/rest/orchestration/validateSSOPageLoaded`, queryData_groupData);
|
|
22559
|
+
let resultCount = result.data.count;
|
|
22560
|
+
//获取菜单数据
|
|
22561
|
+
return resultCount;
|
|
22562
|
+
};
|
|
22563
|
+
|
|
22544
22564
|
/**
|
|
22545
22565
|
* 查询对应角色的门户快捷菜单信息
|
|
22546
22566
|
* @param id GroupID
|
|
@@ -22935,7 +22955,7 @@ const queryGroupIDByOfficeId = async id => {
|
|
|
22935
22955
|
};
|
|
22936
22956
|
|
|
22937
22957
|
/**
|
|
22938
|
-
*
|
|
22958
|
+
* 查询app变量
|
|
22939
22959
|
* @param id 组织ID
|
|
22940
22960
|
*
|
|
22941
22961
|
*/
|