module-menu-vue 0.3.29 → 0.3.30
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/package.json
CHANGED
|
@@ -350,7 +350,7 @@ export const sysNameMap = [
|
|
|
350
350
|
},
|
|
351
351
|
{
|
|
352
352
|
sysName: 'admin',
|
|
353
|
-
title: token ? '
|
|
353
|
+
title: token ? '数据源管理' : '系统管理',
|
|
354
354
|
logoSrc: require('../../assets/admin_logo.svg'),
|
|
355
355
|
},
|
|
356
356
|
// {
|
|
@@ -569,7 +569,7 @@ export const lnrdSysNameMap = [
|
|
|
569
569
|
},
|
|
570
570
|
{
|
|
571
571
|
sysName: 'admin',
|
|
572
|
-
title: token ? '
|
|
572
|
+
title: token ? '数据源管理' : '系统管理',
|
|
573
573
|
logoSrc: require('../../assets/LNRD_sys_img/xitongguanli_sys.png'),
|
|
574
574
|
},
|
|
575
575
|
// {
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
</el-dropdown-item>
|
|
18
18
|
<el-dropdown-item v-show="isShowAppFinal" command="app">
|
|
19
19
|
<img :src="appSystemSrc" alt="" class="menuItem" />
|
|
20
|
-
<span
|
|
20
|
+
<span>数据源管理</span>
|
|
21
21
|
</el-dropdown-item>
|
|
22
22
|
<el-dropdown-item command="logout">
|
|
23
23
|
<img :src="LogoutSrc" alt="" class="menuItem" />
|
|
@@ -133,7 +133,7 @@ export default {
|
|
|
133
133
|
const rsp = await getMenuList()
|
|
134
134
|
const menuList = rsp.data.data[0].routes || []
|
|
135
135
|
console.log("menuList===", menuList)
|
|
136
|
-
this.isShowAppIntegration = this.hasMenu(menuList, 7500, '
|
|
136
|
+
this.isShowAppIntegration = this.hasMenu(menuList, 7500, '数据源管理')
|
|
137
137
|
} catch (e) {
|
|
138
138
|
console.error('获取用户菜单失败:', e)
|
|
139
139
|
this.isShowAppIntegration = false
|