statisticsQuery.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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: 'accuracyPassRateDay',
  29. component: () => import('@/views/statisticsQuery/accuracyPassRateDay'),
  30. name: 'accuracyPassRateDay',
  31. meta: { title: '准确率日统计查询', noCache: true },
  32. sign: 'currency'
  33. },
  34. {
  35. path: 'accuracyPassRateMonth',
  36. component: () => import('@/views/statisticsQuery/accuracyPassRateMonth'),
  37. name: 'accuracyPassRateMonth',
  38. meta: { title: '准确率月统计查询', noCache: true },
  39. sign: 'currency'
  40. },
  41. // {
  42. // path: 'comprehensiveStatistics',
  43. // component: () => import('@/views/statisticsQuery/comprehensiveStatistics'),
  44. // name: 'comprehensiveStatistics',
  45. // meta: { title: '预测发电量统计', noCache: true },
  46. // sign: 'currency'
  47. // },
  48. {
  49. path: 'comprehensiveStatisticsQuery',
  50. component: () => import('@/views/statisticsQuery/CESQuery'),
  51. name: 'CESQuery',
  52. meta: { title: '气象站综合统计查询', noCache: true },
  53. sign: 'currency'
  54. },
  55. {
  56. path: 'comprehensiveStatisticsQueryOne',
  57. component: () => import('@/views/statisticsQuery/CESQueryOne'),
  58. name: 'CESQueryOne',
  59. meta: { title: '测风塔综合统计查询', noCache: true },
  60. sign: 'currency'
  61. },
  62. // {
  63. // path: 'throughtTheYearPower',
  64. // component: () => import('@/views/statisticsQuery/throughtTheYearPower'),
  65. // name: 'throughtTheYearPower',
  66. // meta: { title: '全年逐月发电量统计', noCache: true },
  67. // sign: 'currency'
  68. // },
  69. // {
  70. // path: 'integrationStatisticsQuery',
  71. // component: () => import('@/views/statisticsQuery/integrationStatistics'),
  72. // name: 'integrationStatistics',
  73. // meta: { title: '一体化统计查询', noCache: true },
  74. // sign: 'photovoltaic'
  75. // }
  76. ]
  77. }
  78. export default statisticsQueryRouter