module-menu-vue 0.3.16 → 0.3.18
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
|
@@ -208,6 +208,9 @@ export default {
|
|
|
208
208
|
case '数据填报':
|
|
209
209
|
thirdPartyServiceJumpPath = await this.getUrl('datafill')
|
|
210
210
|
break;
|
|
211
|
+
case '数据直报':
|
|
212
|
+
thirdPartyServiceJumpPath = await this.getUrl('sjzb')
|
|
213
|
+
break;
|
|
211
214
|
case '指标管理':
|
|
212
215
|
thirdPartyServiceJumpPath = await this.getUrl('indicator')
|
|
213
216
|
break
|
|
@@ -277,7 +280,7 @@ export default {
|
|
|
277
280
|
if (['公共卫生监测人口库', '电子传染病档案库', '应急资源库', '传染病防控知识库', '主题库'].includes(nameStr)) {
|
|
278
281
|
thirdPartyServiceJumpPath = `/data-resource-center/data-source/list?menuName=${nameStr}`
|
|
279
282
|
}
|
|
280
|
-
if (['平台运行总览', '知识图谱', '数据可视化', '数据填报', '指标管理'].includes(nameStr)) {
|
|
283
|
+
if (['平台运行总览', '知识图谱', '数据可视化', '数据填报', '指标管理', '数据直报'].includes(nameStr)) {
|
|
281
284
|
window.open(thirdPartyServiceJumpPath, '_blank')
|
|
282
285
|
} else {
|
|
283
286
|
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
|
},
|
|
@@ -278,6 +283,11 @@ export const sysNameMap = [
|
|
|
278
283
|
title: '数据治理',
|
|
279
284
|
logoSrc: require('../../assets/dataManager_logo.svg'),
|
|
280
285
|
},
|
|
286
|
+
{
|
|
287
|
+
sysName: 'datastandard',
|
|
288
|
+
title: '数据标准',
|
|
289
|
+
logoSrc: require('../../assets/datastandard.svg'),
|
|
290
|
+
},
|
|
281
291
|
{
|
|
282
292
|
sysName: 'metadata',
|
|
283
293
|
title: '元数据管理',
|
|
@@ -338,6 +348,11 @@ export const sysNameMap = [
|
|
|
338
348
|
title: '消息中心',
|
|
339
349
|
logoSrc: require('../../assets/alert_logo.svg'),
|
|
340
350
|
},
|
|
351
|
+
{
|
|
352
|
+
childName: "数据直报",
|
|
353
|
+
path: "/sjzb",
|
|
354
|
+
url: require('../../assets/dataApp/datafill.png'),
|
|
355
|
+
}
|
|
341
356
|
];
|
|
342
357
|
|
|
343
358
|
// 辽宁人大菜单图标集合
|
|
@@ -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 = 'c4c92dfdb1694104be683bc743acb4d7';
|
|
5
5
|
axios.interceptors.response.use(
|
|
6
6
|
(response) => {
|
|
7
7
|
if (response.status === 200) {
|