module-menu-vue 0.3.14 → 0.3.15
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
|
@@ -60,7 +60,7 @@ export default {
|
|
|
60
60
|
},
|
|
61
61
|
stash: {
|
|
62
62
|
type: String,
|
|
63
|
-
default: '
|
|
63
|
+
default: ''
|
|
64
64
|
}
|
|
65
65
|
},
|
|
66
66
|
watch: {
|
|
@@ -211,9 +211,6 @@ export default {
|
|
|
211
211
|
case '指标管理':
|
|
212
212
|
thirdPartyServiceJumpPath = await this.getUrl('indicator')
|
|
213
213
|
break
|
|
214
|
-
case '标签分析':
|
|
215
|
-
thirdPartyServiceJumpPath = await this.getUrl('taganalysis')
|
|
216
|
-
break
|
|
217
214
|
case '数据标签':
|
|
218
215
|
thirdPartyServiceJumpPath = '/datatag/';
|
|
219
216
|
break;
|
|
@@ -274,7 +271,7 @@ export default {
|
|
|
274
271
|
if (['公共卫生监测人口库', '电子传染病档案库', '应急资源库', '传染病防控知识库', '主题库'].includes(nameStr)) {
|
|
275
272
|
thirdPartyServiceJumpPath = `/data-resource-center/data-source/list?menuName=${nameStr}`
|
|
276
273
|
}
|
|
277
|
-
if (['平台运行总览', '知识图谱', '数据可视化', '数据填报', '指标管理'
|
|
274
|
+
if (['平台运行总览', '知识图谱', '数据可视化', '数据填报', '指标管理'].includes(nameStr)) {
|
|
278
275
|
window.open(thirdPartyServiceJumpPath, '_blank')
|
|
279
276
|
} else {
|
|
280
277
|
location.href = thirdPartyServiceJumpPath
|
|
@@ -117,7 +117,23 @@ export const getMenuList = (stash = '') => [{
|
|
|
117
117
|
{
|
|
118
118
|
name: '数据应用',
|
|
119
119
|
url: require('../../assets/ic_shujuyingyong_m.svg'),
|
|
120
|
-
children:
|
|
120
|
+
children: [
|
|
121
|
+
{
|
|
122
|
+
childName: '数据标签',
|
|
123
|
+
path: '/datatag',
|
|
124
|
+
url: require('../../assets/datalabel_slogo.svg'),
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
childName: "数据可视化",
|
|
128
|
+
path: "/dataview",
|
|
129
|
+
url: require("../../assets/dataApp/dataview.png"),
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
childName: '综合评价系统',
|
|
133
|
+
path: '/evaluate',
|
|
134
|
+
url: require("../../assets/ic_pingjia.png"),
|
|
135
|
+
}
|
|
136
|
+
]
|
|
121
137
|
},
|
|
122
138
|
{
|
|
123
139
|
name: '公共模块',
|
|
@@ -527,34 +543,3 @@ export const lnrdSysNameMap = [
|
|
|
527
543
|
logoSrc: require('../../assets/LNRD_sys_img/xiaoxizhongxin_sys.png'),
|
|
528
544
|
},
|
|
529
545
|
];
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
// 一体化项目添加标签分析菜单
|
|
533
|
-
const setDataApplyMenuList = (stash) => {
|
|
534
|
-
const menus = [
|
|
535
|
-
{
|
|
536
|
-
childName: '数据标签',
|
|
537
|
-
path: '/datatag',
|
|
538
|
-
url: require('../../assets/datalabel_slogo.svg'),
|
|
539
|
-
},
|
|
540
|
-
{
|
|
541
|
-
childName: "数据可视化",
|
|
542
|
-
path: "/dataview",
|
|
543
|
-
url: require("../../assets/dataApp/dataview.png"),
|
|
544
|
-
},
|
|
545
|
-
{
|
|
546
|
-
childName: '综合评价系统',
|
|
547
|
-
path: '/evaluate',
|
|
548
|
-
url: require("../../assets/ic_pingjia.png"),
|
|
549
|
-
}
|
|
550
|
-
]
|
|
551
|
-
|
|
552
|
-
const analyticMenus = [
|
|
553
|
-
{
|
|
554
|
-
childName: '标签分析',
|
|
555
|
-
path: '/taganalysis',
|
|
556
|
-
url: require("../../assets/ic_biaoqianfenxi.png"),
|
|
557
|
-
}
|
|
558
|
-
]
|
|
559
|
-
return menus
|
|
560
|
-
}
|
|
Binary file
|