module-menu 0.3.21 → 0.3.22

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",
3
- "version": "0.3.21",
3
+ "version": "0.3.22",
4
4
  "description": "城市大数据平台公共头部及尾部",
5
5
  "main": "src/pages/index.jsx",
6
6
  "scripts": {
Binary file
Binary file
@@ -37,11 +37,11 @@ const getDataManageChildrenMenus = (stash = '') => [
37
37
  ? require('../../assets/quality_slogo.svg')
38
38
  : require('../../assets/quality_slogo_LNRD.svg'),
39
39
  },
40
- {
41
- childName: '指标管理',
42
- path: '/indicator',
43
- url: require('../../assets/dataApp/indicator.png'),
44
- },
40
+ // {
41
+ // childName: '指标管理',
42
+ // path: '/indicator',
43
+ // url: require('../../assets/dataApp/indicator.png'),
44
+ // },
45
45
  {
46
46
  childName: '知识图谱',
47
47
  path: '/knowledge',
@@ -136,6 +136,11 @@ export const menuList = (stash = '') => [
136
136
  ? require('../../assets/dataanalytic_slogo.svg')
137
137
  : require('../../assets/dataanalytic_slogo_LNRD.svg'),
138
138
  },
139
+ {
140
+ childName: '机器学习组件',
141
+ url: require('../../assets/ic_shishikaifa.png'),
142
+ path: '/machineLearning',
143
+ },
139
144
  ],
140
145
  },
141
146
  {
@@ -260,6 +265,11 @@ export const menuList = (stash = '') => [
260
265
  ? require('../../assets/ic_pingjia.png')
261
266
  : require('../../assets/ic_pingjia_LNRD.svg'),
262
267
  },
268
+ {
269
+ childName: '标签分析',
270
+ url: require('../../assets/ic_shujubiaoqian.png'),
271
+ path: '/indicator',
272
+ },
263
273
  ],
264
274
  },
265
275
  {
@@ -222,12 +222,15 @@ const ModuleMenu = ({ sysName, stash = '' }) => {
222
222
  case '知识图谱':
223
223
  thirdPartyServiceJumpPath = await getUrl('knowledge');
224
224
  break;
225
- case '指标管理':
225
+ case '标签分析':
226
226
  thirdPartyServiceJumpPath = await getUrl('indicator');
227
227
  break;
228
228
  case '数据直报':
229
229
  thirdPartyServiceJumpPath = await getUrl('sjzb');
230
230
  break;
231
+ case '机器学习组件':
232
+ thirdPartyServiceJumpPath = await getUrl('machineLearning');
233
+ break;
231
234
  default:
232
235
  break;
233
236
  }
@@ -250,8 +253,9 @@ const ModuleMenu = ({ sysName, stash = '' }) => {
250
253
  '知识图谱',
251
254
  '数据可视化',
252
255
  '数据填报',
253
- '指标管理',
256
+ '标签分析',
254
257
  '数据直报',
258
+ '机器学习组件',
255
259
  ].includes(nameStr)
256
260
  ) {
257
261
  window.open(thirdPartyServiceJumpPath, '_blank');