module-menu-vue 0.0.77 → 0.0.78
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
|
|
@@ -159,6 +159,10 @@ export default {
|
|
|
159
159
|
// 跳转各个模块
|
|
160
160
|
toModulePage (nameStr) {
|
|
161
161
|
console.log('nameStr', nameStr)
|
|
162
|
+
if (nameStr === '平台运行总览') {
|
|
163
|
+
window.open('#/overview', '_blank');
|
|
164
|
+
return;
|
|
165
|
+
}
|
|
162
166
|
let thirdPartyServiceJumpPath = ""; // 第三方服务跳转路径
|
|
163
167
|
switch (nameStr) {
|
|
164
168
|
case "数据集成":
|
|
@@ -121,6 +121,11 @@ export const menuList = [{
|
|
|
121
121
|
childName: '数据安全',
|
|
122
122
|
path: '/datasecurity',
|
|
123
123
|
url:require('../../assets/ic_shujuanquan.png'),
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
childName: '平台运行总览',
|
|
127
|
+
path: '/overview',
|
|
128
|
+
url: require('../../assets/ic_zonglan.png'),
|
|
124
129
|
}]
|
|
125
130
|
}];
|
|
126
131
|
export const menuIconSrc = require('../../assets/menuIcon.svg');
|