123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- /** 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: '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: '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
|