statisticsQuery.js 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /** When your routing table is too long, you can split it into small modules**/
  2. import Layout from '@/layout'
  3. const statisticsQueryRouter = {
  4. path: '/statisticsQuery',
  5. component: Layout,
  6. redirect: 'noRedirect',
  7. name: 'statisticsQuery',
  8. meta: {
  9. title: ' 统计查询',
  10. icon: 'tree'
  11. },
  12. children: [
  13. {
  14. path: 'reportStatistics',
  15. component: () => import('@/views/statisticsQuery/reportStatistics'),
  16. name: 'reportStatistics',
  17. meta: { title: '上报统计查询', noCache: true },
  18. sign: 'currency'
  19. },
  20. {
  21. path: 'accuracyPassRate',
  22. component: () => import('@/views/statisticsQuery/accuracyPassRate'),
  23. name: 'accuracyPassRate',
  24. meta: { title: '光伏准确率统计查询', noCache: true },
  25. sign: 'currency'
  26. },
  27. {
  28. path: 'accuracyPassRateOne',
  29. component: () => import('@/views/statisticsQuery/accuracyPassRateOne'),
  30. name: 'accuracyPassRateOne',
  31. meta: { title: '风电准确率统计查询', noCache: true },
  32. sign: 'currency'
  33. },
  34. // {
  35. // path: 'accuracyPassRateDay',
  36. // component: () => import('@/views/statisticsQuery/accuracyPassRateDay'),
  37. // name: 'accuracyPassRateDay',
  38. // meta: { title: '准确率日统计查询', noCache: true },
  39. // sign: 'currency'
  40. // },
  41. {
  42. path: 'accuracyPassRateMonth',
  43. component: () => import('@/views/statisticsQuery/accuracyPassRateMonth'),
  44. name: 'accuracyPassRateMonth',
  45. meta: { title: '光伏准确率月统计查询', noCache: true },
  46. sign: 'currency'
  47. },
  48. {
  49. path: 'accuracyPassRateMonthOne',
  50. component: () => import('@/views/statisticsQuery/accuracyPassRateMonthOne'),
  51. name: 'accuracyPassRateMonthOne',
  52. meta: { title: '风电准确率月统计查询', noCache: true },
  53. sign: 'currency'
  54. },
  55. // {
  56. // path: 'comprehensiveStatistics',
  57. // component: () => import('@/views/statisticsQuery/comprehensiveStatistics'),
  58. // name: 'comprehensiveStatistics',
  59. // meta: { title: '预测发电量统计', noCache: true },
  60. // sign: 'currency'
  61. // },
  62. {
  63. path: 'comprehensiveStatisticsQuery',
  64. component: () => import('@/views/statisticsQuery/CESQuery'),
  65. name: 'CESQuery',
  66. meta: { title: '气象站综合统计查询', noCache: true },
  67. sign: 'currency'
  68. },
  69. {
  70. path: 'comprehensiveStatisticsQueryOne',
  71. component: () => import('@/views/statisticsQuery/CESQueryOne'),
  72. name: 'CESQueryOne',
  73. meta: { title: '测风塔综合统计查询', noCache: true },
  74. sign: 'currency'
  75. },
  76. // {
  77. // path: 'throughtTheYearPower',
  78. // component: () => import('@/views/statisticsQuery/throughtTheYearPower'),
  79. // name: 'throughtTheYearPower',
  80. // meta: { title: '全年逐月发电量统计', noCache: true },
  81. // sign: 'currency'
  82. // },
  83. // {
  84. // path: 'integrationStatisticsQuery',
  85. // component: () => import('@/views/statisticsQuery/integrationStatistics'),
  86. // name: 'integrationStatistics',
  87. // meta: { title: '一体化统计查询', noCache: true },
  88. // sign: 'photovoltaic'
  89. // }
  90. ]
  91. }
  92. export default statisticsQueryRouter