isdata-customer-sdk 0.2.53 → 0.2.55
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
|
@@ -30081,12 +30081,12 @@ const getPlatformBortherMenusByMenuID = async (menu_id, role_ids, group_id) => {
|
|
|
30081
30081
|
}
|
|
30082
30082
|
// 如果当前菜单ID在角色菜单映射信息中存在,则表示该角色有权限访问该菜单
|
|
30083
30083
|
if (!menuMaps[id]) {
|
|
30084
|
-
let icon =
|
|
30084
|
+
// let icon =item.icon;
|
|
30085
30085
|
let iconClass = "el-icon-menu";
|
|
30086
|
-
if
|
|
30087
|
-
|
|
30088
|
-
|
|
30089
|
-
}
|
|
30086
|
+
// if(icon){
|
|
30087
|
+
// let obj = JSON.parse(icon);
|
|
30088
|
+
// iconClass =obj?.url?`#${obj.url}`:"el-icon-menu";
|
|
30089
|
+
// }
|
|
30090
30090
|
let tempItem = {
|
|
30091
30091
|
id: item.id,
|
|
30092
30092
|
index: item.id,
|
|
@@ -33747,11 +33747,11 @@ const viewEncrypt = async decryptStr => {
|
|
|
33747
33747
|
/**
|
|
33748
33748
|
* 服务端加密
|
|
33749
33749
|
*/
|
|
33750
|
-
const serverEncrypt = async
|
|
33750
|
+
const serverEncrypt = async encryptStr => {
|
|
33751
33751
|
let questUrl = `/ext/serverEncrypt`;
|
|
33752
33752
|
let queryData = {
|
|
33753
33753
|
param: {
|
|
33754
|
-
|
|
33754
|
+
encryptStr: encryptStr
|
|
33755
33755
|
}
|
|
33756
33756
|
};
|
|
33757
33757
|
//保存的正则2级密码
|