module-menu-vue 0.0.77 → 0.0.79
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
|
Binary file
|
|
Binary file
|
|
@@ -159,6 +159,10 @@ export default {
|
|
|
159
159
|
// 跳转各个模块
|
|
160
160
|
toModulePage (nameStr) {
|
|
161
161
|
console.log('nameStr', nameStr)
|
|
162
|
+
if (nameStr === '平台运行总览') {
|
|
163
|
+
window.open('/dataadmin/#/overview', '_blank');
|
|
164
|
+
return;
|
|
165
|
+
}
|
|
162
166
|
let thirdPartyServiceJumpPath = ""; // 第三方服务跳转路径
|
|
163
167
|
switch (nameStr) {
|
|
164
168
|
case "数据集成":
|
|
@@ -209,6 +213,9 @@ export default {
|
|
|
209
213
|
case "级联管理":
|
|
210
214
|
thirdPartyServiceJumpPath = '/admin-ui/cascade';
|
|
211
215
|
break;
|
|
216
|
+
case '综合评价系统':
|
|
217
|
+
thirdPartyServiceJumpPath = '/admin-ui/evaluate';
|
|
218
|
+
break;
|
|
212
219
|
default:
|
|
213
220
|
break;
|
|
214
221
|
}
|
|
@@ -84,6 +84,11 @@ export const menuList = [{
|
|
|
84
84
|
childName: "级联管理",
|
|
85
85
|
path: "/jilianguanli",
|
|
86
86
|
url: require("../../assets/ic_jilianguanli.png"),
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
childName: '综合评价系统',
|
|
90
|
+
path: '/zonghepingjia',
|
|
91
|
+
url: require("../../assets/ic_pingjia.png"),
|
|
87
92
|
}]
|
|
88
93
|
},
|
|
89
94
|
{
|
|
@@ -121,6 +126,11 @@ export const menuList = [{
|
|
|
121
126
|
childName: '数据安全',
|
|
122
127
|
path: '/datasecurity',
|
|
123
128
|
url:require('../../assets/ic_shujuanquan.png'),
|
|
129
|
+
},
|
|
130
|
+
{
|
|
131
|
+
childName: '平台运行总览',
|
|
132
|
+
path: '/overview',
|
|
133
|
+
url: require('../../assets/ic_zonglan.png'),
|
|
124
134
|
}]
|
|
125
135
|
}];
|
|
126
136
|
export const menuIconSrc = require('../../assets/menuIcon.svg');
|