123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- import Layout from '@/layout'
- const statisticsChartsRoutes = {
- path: '/statisticsCharts',
- component: Layout,
- meta: {
- title: '统计图表',
- keepAlive: false,
- roles: ['statistical_chart']
- },
- children: [
- {
- path: '/statisticsCharts',
- name: 'StatisticsCharts',
- redirect: 'flight',
- component: () => import('@/views/statisticsCharts'),
- meta: {
- title: '统计图表',
- imgstyle: 'ic_list_nav_arrive_default.png',
- imgstyleup: 'ic_list_nav_arrive_check.png',
- keepAlive: false
- },
- children: [
- {
- path: 'flight',
- name: 'FlightStatisticsCharts',
- hidden: true,
- component: () => import('@/views/statisticsCharts/views/flightStatisticsCharts'),
- meta: { title: '航班量统计', keepAlive: false, roles: ['flight_volume_statistics'] }
- },
- {
- path: 'node',
- name: 'NodeStatisticsCharts',
- hidden: true,
- component: () => import('@/views/statisticsCharts/views/nodeStatisticsCharts'),
- meta: { title: '扫描节点与位置分析', keepAlive: false, roles: ['scanning_node_and_location_analysis'] }
- },
- {
- path: 'reportStatistics',
- name: 'ReportStatistics',
- hidden: true,
- component: () => import('@/views/statisticsCharts/views/reportStatistics'),
- meta: { title: '运送效率报表统计', keepAlive: false, roles: ['scanning_node_and_location_analysis'] }
- },
- {
- path: 'transitTable',
- name: 'TransitTable',
- hidden: true,
- component: () => import('@/views/statisticsCharts/views/transitTable'),
- meta: { title: '中转专项报表统计', keepAlive: false, roles: ['scanning_node_and_location_analysis'] }
- },
- {
- path: 'baggage',
- name: 'BaggageStatisticsCharts',
- hidden: true,
- component: () => import('@/views/statisticsCharts/views/baggageStatisticsCharts'),
- meta: { title: '行李量统计', keepAlive: false, roles: ['baggage_statistics'] }
- },
- {
- path: 'specialBaggage',
- name: 'SpecialBaggageStatisticsCharts',
- hidden: true,
- component: () => import('@/views/statisticsCharts/views/specialBaggageStatisticsCharts'),
- meta: { title: '特殊行李量统计', keepAlive: false }
- },
- {
- path: 'baggagePassenger',
- name: 'BaggagePassengerStatisticsCharts',
- hidden: true,
- component: () => import('@/views/statisticsCharts/views/baggagePassengerStatisticsCharts'),
- meta: { title: '行李旅客量统计', keepAlive: false }
- },
- {
- path: 'baggageAverage',
- name: 'BaggageAverageStatisticsCharts',
- hidden: true,
- component: () => import('@/views/statisticsCharts/views/baggageAverageStatisticsCharts'),
- meta: { title: '平均行李量统计', keepAlive: false }
- },
- {
- path: 'abnormalBaggage',
- name: 'AbnormalBaggageStatisticsCharts',
- hidden: true,
- component: () => import('@/views/statisticsCharts/views/abnormalBaggageStatisticsCharts'),
- meta: { title: '异常行李量统计', keepAlive: false }
- },
- {
- path: 'complaintBaggage',
- name: 'ComplaintBaggageStatisticsCharts',
- hidden: true,
- component: () => import('@/views/statisticsCharts/views/complaintBaggageStatisticsCharts'),
- meta: { title: '投诉行李量统计', keepAlive: false }
- },
- {
- path: 'compensationBaggage',
- name: 'CompensationBaggageStatisticsCharts',
- hidden: true,
- component: () => import('@/views/statisticsCharts/views/compensationBaggageStatisticsCharts'),
- meta: { title: '赔偿行李量统计', keepAlive: false }
- },
- {
- path: 'compensation',
- name: 'CompensationStatisticsCharts',
- hidden: true,
- component: () => import('@/views/statisticsCharts/views/compensationStatisticsCharts'),
- meta: { title: '赔偿金额统计', keepAlive: false }
- }
- ]
- }
- ]
- }
- export default [statisticsChartsRoutes]
|