123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- /** When your routing table is too long, you can split it into small modules**/
- import Layout from '@/layout'
- const dataqueryRouter = {
- path: '/dataquery',
- component: Layout,
- redirect: 'noRedirect',
- name: 'dataquery',
- meta: {
- title: '数据查询',
- icon: 'tree'
- },
- children: [
- {
- path: 'inverterStatusData',
- component: () => import('@/views/dataquery/inverterStatusData'),
- name: 'inverterStatusData',
- meta: { title: '逆变器数据', noCache: true }
- },
- {
- path: 'windTurbineStatusData',
- component: () => import('@/views/dataquery/windTurbineStatusData'),
- name: 'windTurbineStatusData',
- meta: { title: '风机数据', noCache: true }
- },
- {
- path: 'weatherStationStatusData',
- component: () => import('@/views/dataquery/weatherStationStatusData'),
- name: 'weatherStationStatusData',
- meta: { title: '气象站数据', noCache: true }
- },
- {
- path: 'windTowerStatusData',
- component: () => import('@/views/dataquery/windTowerStatusData'),
- name: 'windTowerStatusData',
- meta: { title: '测风塔数据', noCache: true }
- },
- {
- path: 'realTimeDQ',
- component: () => import('@/views/dataquery/forecastPowerShortTerm/index'),
- name: 'realTimeDQ',
- meta: {title: '实时短期数据', noCache: true},
- sign: 'currency'
- },
- {
- path: 'realTimeNWP',
- component: () => import('@/views/dataquery/nwp/index'),
- name: 'realTimeNWP',
- meta: {title: '实时nwp数据', noCache: true},
- sign: 'currency'
- },
- {
- path: 'historyDq',
- component: () => import('@/views/dataquery/forecastPowerShortHisTerm/index'),
- name: 'historyDq',
- meta: {title: '历史短期查询', noCache: true},
- sign: 'currency'
- }
- ]
- }
- export default dataqueryRouter
|