1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- /** When your routing table is too long, you can split it into small modules**/
- import Layout from '@/layout'
- const statisticsQueryRouter = {
- path: '/statisticsQuery',
- component: Layout,
- redirect: 'noRedirect',
- name: 'statisticsQuery',
- meta: {
- title: ' 统计查询',
- icon: 'tree'
- },
- children: [
- {
- path: 'reportStatistics',
- component: () => import('@/views/statisticsQuery/reportStatistics'),
- name: 'reportStatistics',
- meta: { title: '上报统计查询', noCache: true },
- sign: 'currency'
- },
- {
- path: 'accuracyPassRate',
- component: () => import('@/views/statisticsQuery/accuracyPassRate'),
- name: 'accuracyPassRate',
- meta: { title: '光伏准确率统计查询', noCache: true },
- sign: 'currency'
- },
- {
- path: 'accuracyPassRateOne',
- component: () => import('@/views/statisticsQuery/accuracyPassRateOne'),
- name: 'accuracyPassRateOne',
- meta: { title: '风电准确率统计查询', noCache: true },
- sign: 'currency'
- },
- // {
- // path: 'accuracyPassRateDay',
- // component: () => import('@/views/statisticsQuery/accuracyPassRateDay'),
- // name: 'accuracyPassRateDay',
- // meta: { title: '准确率日统计查询', noCache: true },
- // sign: 'currency'
- // },
- {
- path: 'accuracyPassRateMonth',
- component: () => import('@/views/statisticsQuery/accuracyPassRateMonth'),
- name: 'accuracyPassRateMonth',
- meta: { title: '光伏准确率月统计查询', noCache: true },
- sign: 'currency'
- },
- {
- path: 'accuracyPassRateMonthOne',
- component: () => import('@/views/statisticsQuery/accuracyPassRateMonthOne'),
- name: 'accuracyPassRateMonthOne',
- meta: { title: '风电准确率月统计查询', noCache: true },
- sign: 'currency'
- },
- // {
- // path: 'comprehensiveStatistics',
- // component: () => import('@/views/statisticsQuery/comprehensiveStatistics'),
- // name: 'comprehensiveStatistics',
- // meta: { title: '预测发电量统计', noCache: true },
- // sign: 'currency'
- // },
- {
- path: 'comprehensiveStatisticsQuery',
- component: () => import('@/views/statisticsQuery/CESQuery'),
- name: 'CESQuery',
- meta: { title: '气象站综合统计查询', noCache: true },
- sign: 'currency'
- },
- {
- path: 'comprehensiveStatisticsQueryOne',
- component: () => import('@/views/statisticsQuery/CESQueryOne'),
- name: 'CESQueryOne',
- meta: { title: '测风塔综合统计查询', noCache: true },
- sign: 'currency'
- },
- // {
- // path: 'throughtTheYearPower',
- // component: () => import('@/views/statisticsQuery/throughtTheYearPower'),
- // name: 'throughtTheYearPower',
- // meta: { title: '全年逐月发电量统计', noCache: true },
- // sign: 'currency'
- // },
- // {
- // path: 'integrationStatisticsQuery',
- // component: () => import('@/views/statisticsQuery/integrationStatistics'),
- // name: 'integrationStatistics',
- // meta: { title: '一体化统计查询', noCache: true },
- // sign: 'photovoltaic'
- // }
- ]
- }
- export default statisticsQueryRouter
|