module-menu-vue 0.3.16 → 0.3.19
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
|
|
@@ -208,9 +208,15 @@ export default {
|
|
|
208
208
|
case '数据填报':
|
|
209
209
|
thirdPartyServiceJumpPath = await this.getUrl('datafill')
|
|
210
210
|
break;
|
|
211
|
-
case '
|
|
211
|
+
case '数据直报':
|
|
212
|
+
thirdPartyServiceJumpPath = await this.getUrl('sjzb')
|
|
213
|
+
break;
|
|
214
|
+
case '标签分析':
|
|
212
215
|
thirdPartyServiceJumpPath = await this.getUrl('indicator')
|
|
213
216
|
break
|
|
217
|
+
case '机器学习组件':
|
|
218
|
+
thirdPartyServiceJumpPath = await this.getUrl('machineLearning')
|
|
219
|
+
break
|
|
214
220
|
case '数据标签':
|
|
215
221
|
thirdPartyServiceJumpPath = '/datatag/';
|
|
216
222
|
break;
|
|
@@ -277,7 +283,7 @@ export default {
|
|
|
277
283
|
if (['公共卫生监测人口库', '电子传染病档案库', '应急资源库', '传染病防控知识库', '主题库'].includes(nameStr)) {
|
|
278
284
|
thirdPartyServiceJumpPath = `/data-resource-center/data-source/list?menuName=${nameStr}`
|
|
279
285
|
}
|
|
280
|
-
if (['平台运行总览', '知识图谱', '数据可视化', '数据填报', '
|
|
286
|
+
if (['平台运行总览', '知识图谱', '数据可视化', '数据填报', '标签分析', '数据直报', '机器学习组件'].includes(nameStr)) {
|
|
281
287
|
window.open(thirdPartyServiceJumpPath, '_blank')
|
|
282
288
|
} else {
|
|
283
289
|
location.href = thirdPartyServiceJumpPath
|
|
@@ -52,6 +52,11 @@ export const getMenuList = (stash = '') => [{
|
|
|
52
52
|
childName: "数据填报",
|
|
53
53
|
path: "/datafill",
|
|
54
54
|
url: require('../../assets/dataApp/datafill.png'),
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
childName: "数据直报",
|
|
58
|
+
path: "/sjzb",
|
|
59
|
+
url: require('../../assets/dataApp/datafill.png'),
|
|
55
60
|
}
|
|
56
61
|
]
|
|
57
62
|
},
|
|
@@ -77,6 +82,11 @@ export const getMenuList = (stash = '') => [{
|
|
|
77
82
|
childName: '实时开发',
|
|
78
83
|
path: '/dataanalytic',
|
|
79
84
|
url:require('../../assets/dataanalytic_slogo.svg'),
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
childName: '机器学习组件',
|
|
88
|
+
url: require('../../assets/ic_shishikaifa.png'),
|
|
89
|
+
path: '/machineLearning'
|
|
80
90
|
}]
|
|
81
91
|
},
|
|
82
92
|
{
|
|
@@ -142,7 +152,12 @@ export const getMenuList = (stash = '') => [{
|
|
|
142
152
|
childName: '综合评价系统',
|
|
143
153
|
path: '/evaluate',
|
|
144
154
|
url: require("../../assets/ic_pingjia.png"),
|
|
145
|
-
}
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
childName: '标签分析',
|
|
158
|
+
url: require('../../assets/ic_shujubiaoqian.png'),
|
|
159
|
+
path: '/indicator'
|
|
160
|
+
},
|
|
146
161
|
]
|
|
147
162
|
},
|
|
148
163
|
{
|
|
@@ -278,6 +293,11 @@ export const sysNameMap = [
|
|
|
278
293
|
title: '数据治理',
|
|
279
294
|
logoSrc: require('../../assets/dataManager_logo.svg'),
|
|
280
295
|
},
|
|
296
|
+
{
|
|
297
|
+
sysName: 'datastandard',
|
|
298
|
+
title: '数据标准',
|
|
299
|
+
logoSrc: require('../../assets/datastandard.svg'),
|
|
300
|
+
},
|
|
281
301
|
{
|
|
282
302
|
sysName: 'metadata',
|
|
283
303
|
title: '元数据管理',
|
|
@@ -338,6 +358,11 @@ export const sysNameMap = [
|
|
|
338
358
|
title: '消息中心',
|
|
339
359
|
logoSrc: require('../../assets/alert_logo.svg'),
|
|
340
360
|
},
|
|
361
|
+
{
|
|
362
|
+
childName: "数据直报",
|
|
363
|
+
path: "/sjzb",
|
|
364
|
+
url: require('../../assets/dataApp/datafill.png'),
|
|
365
|
+
}
|
|
341
366
|
];
|
|
342
367
|
|
|
343
368
|
// 辽宁人大菜单图标集合
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import axios from 'axios';
|
|
2
2
|
import getStore from './userInfo';
|
|
3
3
|
import { checkToken } from './permessionUtils';
|
|
4
|
-
let tokenValue = '
|
|
4
|
+
let tokenValue = 'ba8db130f3334ae5b432b1398e0c1b1d';
|
|
5
5
|
axios.interceptors.response.use(
|
|
6
6
|
(response) => {
|
|
7
7
|
if (response.status === 200) {
|
package/vue.config.js
CHANGED