Jelajahi Sumber

修改数据查询节点重复问题

xusl 3 tahun lalu
induk
melakukan
260ee2f2d7

+ 14 - 7
ipfcst-console/src/main/frontend/router/modules/dataquery.js

@@ -16,43 +16,50 @@ const dataqueryRouter = {
       path: 'inverterStatusData',
       component: () => import('@/views/dataquery/inverterStatusData'),
       name: 'inverterStatusData',
-      meta: { title: '逆变器数据', noCache: true }
+      meta: { title: '逆变器数据', noCache: true },
+      sign: 'currency'
     },
     {
       path: 'windTurbineStatusData',
       component: () => import('@/views/dataquery/windTurbineStatusData'),
       name: 'windTurbineStatusData',
-      meta: { title: '风机数据', noCache: true }
+      meta: { title: '风机数据', noCache: true },
+      sign: 'currency'
     },
     {
       path: 'weatherStationStatusData',
       component: () => import('@/views/dataquery/weatherStationStatusData'),
       name: 'weatherStationStatusData',
-      meta: { title: '气象站数据', noCache: true }
+      meta: { title: '气象站数据', noCache: true },
+      sign: 'currency'
     },
     {
       path: 'windTowerStatusData',
       component: () => import('@/views/dataquery/windTowerStatusData'),
       name: 'windTowerStatusData',
-      meta: { title: '测风塔数据', noCache: true }
+      meta: { title: '测风塔数据', noCache: true },
+      sign: 'currency'
     },
     {
       path: 'realTimeDQ',
       component: () => import('@/views/dataquery/forecastPowerShortTerm/index'),
       name: 'realTimeDQ',
-      meta: {title: '实时短期数据', noCache: true}
+      meta: {title: '实时短期数据', noCache: true},
+      sign: 'currency'
     },
     {
       path: 'realTimeNWP',
       component: () => import('@/views/dataquery/nwp/index'),
       name: 'realTimeNWP',
-      meta: {title: '实时nwp数据', noCache: true}
+      meta: {title: '实时nwp数据', noCache: true},
+      sign: 'currency'
     },
     {
       path: 'historyDq',
       component: () => import('@/views/dataquery/forecastPowerShortHisTerm/index'),
       name: 'historyDq',
-      meta: {title: '历史短期查询', noCache: true}
+      meta: {title: '历史短期查询', noCache: true},
+      sign: 'currency'
     }
   ]
 }