module-menu-vue 0.0.76 → 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "module-menu-vue",
3
- "version": "0.0.76",
3
+ "version": "0.0.78",
4
4
  "description": "城市大数据平台菜单--Vue版",
5
5
  "main": "/index.js",
6
6
  "scripts": {
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 "数据集成":
@@ -48,7 +48,7 @@ export const menuList = [{
48
48
  }]
49
49
  },
50
50
  {
51
- name: '数据开放',
51
+ name: '数据共享',
52
52
  url: require('../../assets/ic_shujukaifang_m.svg'),
53
53
  children: [{
54
54
  childName: '数据服务',
@@ -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');