module-menu-vue 0.3.18 → 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
|
|
@@ -211,9 +211,12 @@ export default {
|
|
|
211
211
|
case '数据直报':
|
|
212
212
|
thirdPartyServiceJumpPath = await this.getUrl('sjzb')
|
|
213
213
|
break;
|
|
214
|
-
case '
|
|
214
|
+
case '标签分析':
|
|
215
215
|
thirdPartyServiceJumpPath = await this.getUrl('indicator')
|
|
216
216
|
break
|
|
217
|
+
case '机器学习组件':
|
|
218
|
+
thirdPartyServiceJumpPath = await this.getUrl('machineLearning')
|
|
219
|
+
break
|
|
217
220
|
case '数据标签':
|
|
218
221
|
thirdPartyServiceJumpPath = '/datatag/';
|
|
219
222
|
break;
|
|
@@ -280,7 +283,7 @@ export default {
|
|
|
280
283
|
if (['公共卫生监测人口库', '电子传染病档案库', '应急资源库', '传染病防控知识库', '主题库'].includes(nameStr)) {
|
|
281
284
|
thirdPartyServiceJumpPath = `/data-resource-center/data-source/list?menuName=${nameStr}`
|
|
282
285
|
}
|
|
283
|
-
if (['平台运行总览', '知识图谱', '数据可视化', '数据填报', '
|
|
286
|
+
if (['平台运行总览', '知识图谱', '数据可视化', '数据填报', '标签分析', '数据直报', '机器学习组件'].includes(nameStr)) {
|
|
284
287
|
window.open(thirdPartyServiceJumpPath, '_blank')
|
|
285
288
|
} else {
|
|
286
289
|
location.href = thirdPartyServiceJumpPath
|
|
@@ -82,6 +82,11 @@ export const getMenuList = (stash = '') => [{
|
|
|
82
82
|
childName: '实时开发',
|
|
83
83
|
path: '/dataanalytic',
|
|
84
84
|
url:require('../../assets/dataanalytic_slogo.svg'),
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
childName: '机器学习组件',
|
|
88
|
+
url: require('../../assets/ic_shishikaifa.png'),
|
|
89
|
+
path: '/machineLearning'
|
|
85
90
|
}]
|
|
86
91
|
},
|
|
87
92
|
{
|
|
@@ -147,7 +152,12 @@ export const getMenuList = (stash = '') => [{
|
|
|
147
152
|
childName: '综合评价系统',
|
|
148
153
|
path: '/evaluate',
|
|
149
154
|
url: require("../../assets/ic_pingjia.png"),
|
|
150
|
-
}
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
childName: '标签分析',
|
|
158
|
+
url: require('../../assets/ic_shujubiaoqian.png'),
|
|
159
|
+
path: '/indicator'
|
|
160
|
+
},
|
|
151
161
|
]
|
|
152
162
|
},
|
|
153
163
|
{
|
|
@@ -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