|
@@ -13,7 +13,7 @@ const uploadRoutes = {
|
|
|
imgstyleup: 'ic_list_nav_upload_check.png',
|
|
|
},
|
|
|
component: {
|
|
|
- render (c) {
|
|
|
+ render(c) {
|
|
|
return c('router-view')
|
|
|
},
|
|
|
},
|
|
@@ -38,7 +38,7 @@ const statisticsChartsRoutes = {
|
|
|
children: [
|
|
|
{
|
|
|
path: '/statisticsCharts',
|
|
|
- redirect: 'airlineCompany',
|
|
|
+ redirect: '/statisticsCharts/baggage',
|
|
|
component: () => import('@/views/statisticsCharts'),
|
|
|
meta: {
|
|
|
title: '统计图表',
|
|
@@ -46,245 +46,469 @@ const statisticsChartsRoutes = {
|
|
|
imgstyleup: 'ic_list_nav_arrive_check.png',
|
|
|
},
|
|
|
children: [
|
|
|
+ // {
|
|
|
+ // path: 'airlineCompany',
|
|
|
+ // redirect: 'airlineCompany/flight',
|
|
|
+ // name: 'AirlineCompanyStatistics',
|
|
|
+ // hidden: true,
|
|
|
+ // component: {
|
|
|
+ // render(h) {
|
|
|
+ // return h('router-view')
|
|
|
+ // },
|
|
|
+ // },
|
|
|
+ // children: [
|
|
|
+ // {
|
|
|
+ // path: 'flight',
|
|
|
+ // name: 'FlightStatisticsCharts',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import(
|
|
|
+ // '@/views/statisticsCharts/views/airlineCompany/flightStatisticsCharts'
|
|
|
+ // ),
|
|
|
+ // meta: {
|
|
|
+ // title: '航班量统计',
|
|
|
+ // roles: ['flight_volume_statistics'],
|
|
|
+ // },
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'baggage',
|
|
|
+ // name: 'BaggageStatisticsCharts',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import(
|
|
|
+ // '@/views/statisticsCharts/views/airlineCompany/baggageStatisticsCharts'
|
|
|
+ // ),
|
|
|
+ // meta: { title: '行李量统计', roles: ['baggage_statistics'] },
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'specialBaggage',
|
|
|
+ // name: 'SpecialBaggageStatisticsCharts',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import(
|
|
|
+ // '@/views/statisticsCharts/views/airlineCompany/specialBaggageStatisticsCharts'
|
|
|
+ // ),
|
|
|
+ // meta: { title: '特殊行李量统计' },
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'baggagePassenger',
|
|
|
+ // name: 'BaggagePassengerStatisticsCharts',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import(
|
|
|
+ // '@/views/statisticsCharts/views/airlineCompany/baggagePassengerStatisticsCharts'
|
|
|
+ // ),
|
|
|
+ // meta: { title: '行李旅客量统计' },
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'baggageAverage',
|
|
|
+ // name: 'BaggageAverageStatisticsCharts',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import(
|
|
|
+ // '@/views/statisticsCharts/views/airlineCompany/baggageAverageStatisticsCharts'
|
|
|
+ // ),
|
|
|
+ // meta: { title: '平均行李量统计' },
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'abnormalBaggage',
|
|
|
+ // name: 'AbnormalBaggageStatisticsCharts',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import(
|
|
|
+ // '@/views/statisticsCharts/views/airlineCompany/abnormalBaggageStatisticsCharts'
|
|
|
+ // ),
|
|
|
+ // meta: { title: '异常行李量统计' },
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'complaintBaggage',
|
|
|
+ // name: 'ComplaintBaggageStatisticsCharts',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import(
|
|
|
+ // '@/views/statisticsCharts/views/airlineCompany/complaintBaggageStatisticsCharts'
|
|
|
+ // ),
|
|
|
+ // meta: { title: '投诉行李量统计' },
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'compensationBaggage',
|
|
|
+ // name: 'CompensationBaggageStatisticsCharts',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import(
|
|
|
+ // '@/views/statisticsCharts/views/airlineCompany/compensationBaggageStatisticsCharts'
|
|
|
+ // ),
|
|
|
+ // meta: { title: '赔偿行李量统计' },
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'compensation',
|
|
|
+ // name: 'CompensationStatisticsCharts',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import(
|
|
|
+ // '@/views/statisticsCharts/views/airlineCompany/compensationStatisticsCharts'
|
|
|
+ // ),
|
|
|
+ // meta: { title: '赔偿金额统计' },
|
|
|
+ // },
|
|
|
+ // ],
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'passengerClassification',
|
|
|
+ // redirect: 'passengerClassification/baggagePassenger',
|
|
|
+ // name: 'PassengerStatistics',
|
|
|
+ // hidden: true,
|
|
|
+ // component: {
|
|
|
+ // render (h) {
|
|
|
+ // return h('router-view')
|
|
|
+ // },
|
|
|
+ // },
|
|
|
+ // children: [
|
|
|
+ // {
|
|
|
+ // path: 'baggagePassenger',
|
|
|
+ // name: 'PassengerStatisticsCharts',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import(
|
|
|
+ // '@/views/statisticsCharts/views/passengerClassification/baggagePassengerStatisticsCharts'
|
|
|
+ // ),
|
|
|
+ // meta: { title: '行李旅客量统计' },
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'baggage',
|
|
|
+ // name: 'PassengerBaggageStatisticsCharts',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import(
|
|
|
+ // '@/views/statisticsCharts/views/passengerClassification/baggageStatisticsCharts'
|
|
|
+ // ),
|
|
|
+ // meta: { title: '行李量统计' },
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'specialBaggage',
|
|
|
+ // name: 'PassengerSpecialBaggageStatisticsCharts',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import(
|
|
|
+ // '@/views/statisticsCharts/views/passengerClassification/specialBaggageStatisticsCharts'
|
|
|
+ // ),
|
|
|
+ // meta: { title: '特殊行李量统计' },
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'abnormalBaggage',
|
|
|
+ // name: 'PassengerAbnormalBaggageStatisticsCharts',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import(
|
|
|
+ // '@/views/statisticsCharts/views/passengerClassification/abnormalBaggageStatisticsCharts'
|
|
|
+ // ),
|
|
|
+ // meta: { title: '异常行李量统计' },
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'complaintBaggage',
|
|
|
+ // name: 'PassengerComplaintBaggageStatisticsCharts',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import(
|
|
|
+ // '@/views/statisticsCharts/views/passengerClassification/complaintBaggageStatisticsCharts'
|
|
|
+ // ),
|
|
|
+ // meta: { title: '投诉行李量统计' },
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'compensationBaggage',
|
|
|
+ // name: 'PassengerCompensationBaggageStatisticsCharts',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import(
|
|
|
+ // '@/views/statisticsCharts/views/passengerClassification/compensationBaggageStatisticsCharts'
|
|
|
+ // ),
|
|
|
+ // meta: { title: '赔偿行李量统计' },
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'compensation',
|
|
|
+ // name: 'PassengerCompensationStatisticsCharts',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import(
|
|
|
+ // '@/views/statisticsCharts/views/passengerClassification/compensationStatisticsCharts'
|
|
|
+ // ),
|
|
|
+ // meta: { title: '赔偿金额统计' },
|
|
|
+ // },
|
|
|
+ // ],
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'flightClassification',
|
|
|
+ // redirect: 'flightClassification/flight',
|
|
|
+ // name: 'FlightClassificationStatistics',
|
|
|
+ // hidden: true,
|
|
|
+ // component: {
|
|
|
+ // render (h) {
|
|
|
+ // return h('router-view')
|
|
|
+ // },
|
|
|
+ // },
|
|
|
+ // children: [
|
|
|
+ // {
|
|
|
+ // path: 'flight',
|
|
|
+ // name: 'FlightClassificationStatisticsCharts',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import(
|
|
|
+ // '@/views/statisticsCharts/views/flightClassification/flightClassificationStatisticsCharts'
|
|
|
+ // ),
|
|
|
+ // meta: { title: '航班量统计' },
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'baggage',
|
|
|
+ // name: 'FlightBaggageClassificationStatisticsCharts',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import(
|
|
|
+ // '@/views/statisticsCharts/views/flightClassification/baggageClassificationStatisticsCharts'
|
|
|
+ // ),
|
|
|
+ // meta: { title: '行李量统计' },
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'passenger',
|
|
|
+ // name: 'FlightPassengerClassificationStatisticsCharts',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import(
|
|
|
+ // '@/views/statisticsCharts/views/flightClassification/passengerClassificationStatisticsCharts'
|
|
|
+ // ),
|
|
|
+ // meta: { title: '行李旅客量统计' },
|
|
|
+ // },
|
|
|
+ // ],
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'report',
|
|
|
+ // redirect: 'report/reportStatistics',
|
|
|
+ // name: 'Report',
|
|
|
+ // hidden: true,
|
|
|
+ // component: {
|
|
|
+ // render (h) {
|
|
|
+ // return h('router-view')
|
|
|
+ // },
|
|
|
+ // },
|
|
|
+ // children: [
|
|
|
+ // {
|
|
|
+ // path: 'reportStatistics',
|
|
|
+ // name: 'ReportStatistics',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import(
|
|
|
+ // '@/views/statisticsCharts/views/report/reportStatistics'
|
|
|
+ // ),
|
|
|
+ // meta: {
|
|
|
+ // title: '运送效率报表统计',
|
|
|
+ // roles: ['scanning_node_and_location_analysis'],
|
|
|
+ // },
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'transitTables',
|
|
|
+ // name: 'TransitTables',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import('@/views/statisticsCharts/views/report/transitTables'),
|
|
|
+ // meta: {
|
|
|
+ // title: '中转四个流向统计',
|
|
|
+ // roles: ['scanning_node_and_location_analysis'],
|
|
|
+ // },
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'transferDirectionTable',
|
|
|
+ // name: 'TransferDirectionTable',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import(
|
|
|
+ // '@/views/statisticsCharts/views/report/transferDirectionTable'
|
|
|
+ // ),
|
|
|
+ // meta: {
|
|
|
+ // title: '中转流向明细统计',
|
|
|
+ // roles: ['scanning_node_and_location_analysis'],
|
|
|
+ // },
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'transferBaggageTable',
|
|
|
+ // name: 'TransferBaggageTable',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import(
|
|
|
+ // '@/views/statisticsCharts/views/report/transferBaggageTable'
|
|
|
+ // ),
|
|
|
+ // meta: {
|
|
|
+ // title: '中转行李因素分析统计',
|
|
|
+ // roles: ['scanning_node_and_location_analysis'],
|
|
|
+ // },
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'baggageProportionTable',
|
|
|
+ // name: 'BaggageProportionTable',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import(
|
|
|
+ // '@/views/statisticsCharts/views/report/baggageProportionTable'
|
|
|
+ // ),
|
|
|
+ // meta: {
|
|
|
+ // title: '中转行李比例明细统计',
|
|
|
+ // roles: ['scanning_node_and_location_analysis'],
|
|
|
+ // },
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'scanningStatistics',
|
|
|
+ // name: 'ScanningStatistics',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import(
|
|
|
+ // '@/views/statisticsCharts/views/report/scanningStatistics'
|
|
|
+ // ),
|
|
|
+ // meta: {
|
|
|
+ // title: '航站BRS扫描统计',
|
|
|
+ // roles: ['scanning_node_and_location_analysis'],
|
|
|
+ // },
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'scanDataTable',
|
|
|
+ // name: 'scanDataTable',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import('@/views/statisticsCharts/views/report/scanDataTable'),
|
|
|
+ // meta: {
|
|
|
+ // title: 'Mannual Load扫描数据统计表',
|
|
|
+ // roles: ['scanning_node_and_location_analysis'],
|
|
|
+ // },
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'rfldTable',
|
|
|
+ // name: 'rfldTable',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import('@/views/statisticsCharts/views/report/rfldTable'),
|
|
|
+ // meta: {
|
|
|
+ // title: '航易行RFID扫描数据统计表',
|
|
|
+ // roles: ['scanning_node_and_location_analysis'],
|
|
|
+ // },
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'Percentageofbaggage',
|
|
|
+ // name: 'Percentageofbaggage',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import('@/views/statisticsCharts/views/report/Percentageofbaggage'),
|
|
|
+ // meta: {
|
|
|
+ // title: '行李全流程服务水平百分比',
|
|
|
+ // roles: ['scanning_node_and_location_analysis'],
|
|
|
+ // },
|
|
|
+ // },
|
|
|
+ // ],
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'specialClassification',
|
|
|
+ // redirect: 'specialClassification/special',
|
|
|
+ // name: 'SpecialStatistics',
|
|
|
+ // hidden: true,
|
|
|
+ // component: {
|
|
|
+ // render (h) {
|
|
|
+ // return h('router-view')
|
|
|
+ // },
|
|
|
+ // },
|
|
|
+ // children: [
|
|
|
+ // {
|
|
|
+ // path: 'special',
|
|
|
+ // name: 'SpecialBaggageClassificationStatisticsCharts',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import(
|
|
|
+ // '@/views/statisticsCharts/views/special/specialBaggageClassificationStatisticsCharts'
|
|
|
+ // ),
|
|
|
+ // meta: { title: '特殊行李分类统计' },
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'abnormal',
|
|
|
+ // name: 'AbnormalBaggageClassificationStatisticsCharts',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import(
|
|
|
+ // '@/views/statisticsCharts/views/special/abnormalBaggageClassificationStatisticsCharts'
|
|
|
+ // ),
|
|
|
+ // meta: { title: '异常行李分类统计' },
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'compensationBaggage',
|
|
|
+ // name: 'CompensationBaggageClassificationStatisticsCharts',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import(
|
|
|
+ // '@/views/statisticsCharts/views/special/compensationBaggageClassificationStatisticsCharts'
|
|
|
+ // ),
|
|
|
+ // meta: { title: '赔偿行李分类统计' },
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'compensation',
|
|
|
+ // name: 'CompensationClassificationStatisticsCharts',
|
|
|
+ // hidden: true,
|
|
|
+ // component: () =>
|
|
|
+ // import(
|
|
|
+ // '@/views/statisticsCharts/views/special/compensationClassificationStatisticsCharts'
|
|
|
+ // ),
|
|
|
+ // meta: { title: '赔偿金额分类统计' },
|
|
|
+ // },
|
|
|
+ // ],
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // path: 'statisticalAnalysis',
|
|
|
+ // name: 'statisticalAnalysisContent',
|
|
|
+ // meta: { title: '统计分析' },
|
|
|
+ // component: () => import('@/views/statisticalAnalysis/components'),
|
|
|
+ // },
|
|
|
{
|
|
|
- path: 'airlineCompany',
|
|
|
- redirect: 'airlineCompany/flight',
|
|
|
- name: 'AirlineCompanyStatistics',
|
|
|
+ path: 'baggage',
|
|
|
+ redirect: 'baggage/all',
|
|
|
+ name: 'BaggageStatistics',
|
|
|
hidden: true,
|
|
|
component: {
|
|
|
- render (h) {
|
|
|
+ render(h) {
|
|
|
return h('router-view')
|
|
|
},
|
|
|
},
|
|
|
children: [
|
|
|
{
|
|
|
- path: 'flight',
|
|
|
- name: 'FlightStatisticsCharts',
|
|
|
+ path: 'all',
|
|
|
+ name: 'BaggageAllStatisticsCharts',
|
|
|
hidden: true,
|
|
|
component: () =>
|
|
|
import(
|
|
|
- '@/views/statisticsCharts/views/airlineCompany/flightStatisticsCharts'
|
|
|
+ '@/views/statisticsCharts/views/baggage/baggageAllStatisticsCharts'
|
|
|
),
|
|
|
- meta: {
|
|
|
- title: '行李进港数量统计',
|
|
|
- roles: ['flight_volume_statistics'],
|
|
|
- },
|
|
|
+ meta: { title: '行李数量统计' },
|
|
|
},
|
|
|
{
|
|
|
- path: 'baggage',
|
|
|
- name: 'BaggageStatisticsCharts',
|
|
|
+ path: 'company',
|
|
|
+ name: 'BaggageCompanyStatisticsCharts',
|
|
|
hidden: true,
|
|
|
component: () =>
|
|
|
import(
|
|
|
- '@/views/statisticsCharts/views/airlineCompany/baggageStatisticsCharts'
|
|
|
+ '@/views/statisticsCharts/views/baggage/companyStatisticsCharts'
|
|
|
),
|
|
|
- meta: { title: '航司行李量统计', roles: ['baggage_statistics'] },
|
|
|
+ meta: { title: '航司行李量统计' },
|
|
|
},
|
|
|
- // {
|
|
|
- // path: 'specialBaggage',
|
|
|
- // name: 'SpecialBaggageStatisticsCharts',
|
|
|
- // hidden: true,
|
|
|
- // component: () =>
|
|
|
- // import(
|
|
|
- // '@/views/statisticsCharts/views/airlineCompany/specialBaggageStatisticsCharts'
|
|
|
- // ),
|
|
|
- // meta: { title: '航线行李量统计' },
|
|
|
- // },
|
|
|
{
|
|
|
- path: 'baggagePassenger',
|
|
|
- name: 'BaggagePassengerStatisticsCharts',
|
|
|
+ path: 'airline',
|
|
|
+ name: 'BaggageAirlineStatisticsCharts',
|
|
|
hidden: true,
|
|
|
component: () =>
|
|
|
import(
|
|
|
- '@/views/statisticsCharts/views/airlineCompany/baggagePassengerStatisticsCharts'
|
|
|
+ '@/views/statisticsCharts/views/baggage/airlineStatisticsCharts'
|
|
|
),
|
|
|
meta: { title: '航线行李量统计' },
|
|
|
},
|
|
|
{
|
|
|
- path: 'hourPassenger',
|
|
|
- name: 'HourPassengerStatisticsCharts',
|
|
|
+ path: 'hour',
|
|
|
+ name: 'BaggageHourStatisticsCharts',
|
|
|
hidden: true,
|
|
|
component: () =>
|
|
|
import(
|
|
|
- '@/views/statisticsCharts/views/airlineCompany/hourPassengerStatisticsCharts'
|
|
|
+ '@/views/statisticsCharts/views/baggage/hourStatisticsCharts'
|
|
|
),
|
|
|
- meta: { title: '航线行李量统计' },
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'baggageAverage',
|
|
|
- name: 'BaggageAverageStatisticsCharts',
|
|
|
- hidden: true,
|
|
|
- component: () =>
|
|
|
- import(
|
|
|
- '@/views/statisticsCharts/views/airlineCompany/baggageAverageStatisticsCharts'
|
|
|
- ),
|
|
|
- meta: { title: '平均行李量统计' },
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'abnormalBaggage',
|
|
|
- name: 'AbnormalBaggageStatisticsCharts',
|
|
|
- hidden: true,
|
|
|
- component: () =>
|
|
|
- import(
|
|
|
- '@/views/statisticsCharts/views/airlineCompany/abnormalBaggageStatisticsCharts'
|
|
|
- ),
|
|
|
- meta: { title: '异常行李量统计' },
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'complaintBaggage',
|
|
|
- name: 'ComplaintBaggageStatisticsCharts',
|
|
|
- hidden: true,
|
|
|
- component: () =>
|
|
|
- import(
|
|
|
- '@/views/statisticsCharts/views/airlineCompany/complaintBaggageStatisticsCharts'
|
|
|
- ),
|
|
|
- meta: { title: '投诉行李量统计' },
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'compensationBaggage',
|
|
|
- name: 'CompensationBaggageStatisticsCharts',
|
|
|
- hidden: true,
|
|
|
- component: () =>
|
|
|
- import(
|
|
|
- '@/views/statisticsCharts/views/airlineCompany/compensationBaggageStatisticsCharts'
|
|
|
- ),
|
|
|
- meta: { title: '赔偿行李量统计' },
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'compensation',
|
|
|
- name: 'CompensationStatisticsCharts',
|
|
|
- hidden: true,
|
|
|
- component: () =>
|
|
|
- import(
|
|
|
- '@/views/statisticsCharts/views/airlineCompany/compensationStatisticsCharts'
|
|
|
- ),
|
|
|
- meta: { title: '赔偿金额统计' },
|
|
|
- },
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'passengerClassification',
|
|
|
- redirect: 'passengerClassification/baggagePassenger',
|
|
|
- name: 'PassengerStatistics',
|
|
|
- hidden: true,
|
|
|
- component: {
|
|
|
- render (h) {
|
|
|
- return h('router-view')
|
|
|
- },
|
|
|
- },
|
|
|
- children: [
|
|
|
- {
|
|
|
- path: 'baggagePassenger',
|
|
|
- name: 'PassengerStatisticsCharts',
|
|
|
- hidden: true,
|
|
|
- component: () =>
|
|
|
- import(
|
|
|
- '@/views/statisticsCharts/views/passengerClassification/baggagePassengerStatisticsCharts'
|
|
|
- ),
|
|
|
- meta: { title: '行李旅客量统计' },
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'baggage',
|
|
|
- name: 'PassengerBaggageStatisticsCharts',
|
|
|
- hidden: true,
|
|
|
- component: () =>
|
|
|
- import(
|
|
|
- '@/views/statisticsCharts/views/passengerClassification/baggageStatisticsCharts'
|
|
|
- ),
|
|
|
- meta: { title: '行李量统计' },
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'specialBaggage',
|
|
|
- name: 'PassengerSpecialBaggageStatisticsCharts',
|
|
|
- hidden: true,
|
|
|
- component: () =>
|
|
|
- import(
|
|
|
- '@/views/statisticsCharts/views/passengerClassification/specialBaggageStatisticsCharts'
|
|
|
- ),
|
|
|
- meta: { title: '特殊行李量统计' },
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'abnormalBaggage',
|
|
|
- name: 'PassengerAbnormalBaggageStatisticsCharts',
|
|
|
- hidden: true,
|
|
|
- component: () =>
|
|
|
- import(
|
|
|
- '@/views/statisticsCharts/views/passengerClassification/abnormalBaggageStatisticsCharts'
|
|
|
- ),
|
|
|
- meta: { title: '异常行李量统计' },
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'complaintBaggage',
|
|
|
- name: 'PassengerComplaintBaggageStatisticsCharts',
|
|
|
- hidden: true,
|
|
|
- component: () =>
|
|
|
- import(
|
|
|
- '@/views/statisticsCharts/views/passengerClassification/complaintBaggageStatisticsCharts'
|
|
|
- ),
|
|
|
- meta: { title: '投诉行李量统计' },
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'compensationBaggage',
|
|
|
- name: 'PassengerCompensationBaggageStatisticsCharts',
|
|
|
- hidden: true,
|
|
|
- component: () =>
|
|
|
- import(
|
|
|
- '@/views/statisticsCharts/views/passengerClassification/compensationBaggageStatisticsCharts'
|
|
|
- ),
|
|
|
- meta: { title: '赔偿行李量统计' },
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'compensation',
|
|
|
- name: 'PassengerCompensationStatisticsCharts',
|
|
|
- hidden: true,
|
|
|
- component: () =>
|
|
|
- import(
|
|
|
- '@/views/statisticsCharts/views/passengerClassification/compensationStatisticsCharts'
|
|
|
- ),
|
|
|
- meta: { title: '赔偿金额统计' },
|
|
|
- },
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'flightClassification',
|
|
|
- redirect: 'flightClassification/flight',
|
|
|
- name: 'FlightClassificationStatistics',
|
|
|
- hidden: true,
|
|
|
- component: {
|
|
|
- render (h) {
|
|
|
- return h('router-view')
|
|
|
- },
|
|
|
- },
|
|
|
- children: [
|
|
|
- {
|
|
|
- path: 'flight',
|
|
|
- name: 'FlightClassificationStatisticsCharts',
|
|
|
- hidden: true,
|
|
|
- component: () =>
|
|
|
- import(
|
|
|
- '@/views/statisticsCharts/views/flightClassification/flightClassificationStatisticsCharts'
|
|
|
- ),
|
|
|
- meta: { title: '航班量统计' },
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'baggage',
|
|
|
- name: 'FlightBaggageClassificationStatisticsCharts',
|
|
|
- hidden: true,
|
|
|
- component: () =>
|
|
|
- import(
|
|
|
- '@/views/statisticsCharts/views/flightClassification/baggageClassificationStatisticsCharts'
|
|
|
- ),
|
|
|
- meta: { title: '行李量统计' },
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'passenger',
|
|
|
- name: 'FlightPassengerClassificationStatisticsCharts',
|
|
|
- hidden: true,
|
|
|
- component: () =>
|
|
|
- import(
|
|
|
- '@/views/statisticsCharts/views/flightClassification/passengerClassificationStatisticsCharts'
|
|
|
- ),
|
|
|
- meta: { title: '行李旅客量统计' },
|
|
|
+ meta: { title: '行李小时量统计' },
|
|
|
},
|
|
|
],
|
|
|
},
|
|
@@ -296,200 +520,29 @@ const statisticsChartsRoutes = {
|
|
|
import('@/views/statisticsCharts/views/nodeStatisticsCharts'),
|
|
|
meta: {
|
|
|
title: '扫描节点与位置分析',
|
|
|
- roles: ['scanning_node_and_location_analysis'],
|
|
|
},
|
|
|
},
|
|
|
{
|
|
|
- path: 'cap',
|
|
|
- name: 'capStatisticsCharts',
|
|
|
+ path: 'workload',
|
|
|
+ name: 'WorkloadStatisticsCharts',
|
|
|
hidden: true,
|
|
|
component: () =>
|
|
|
- import('@/views/statisticsCharts/views/airlineCompany/capPassengerStatisticsCharts'),
|
|
|
+ import('@/views/statisticsCharts/views/workloadStatisticsCharts'),
|
|
|
meta: {
|
|
|
- title: '扫描节点与位置分析',
|
|
|
- roles: ['scanning_node_and_location_analysis'],
|
|
|
+ title: '工作量统计',
|
|
|
},
|
|
|
},
|
|
|
{
|
|
|
- path: 'report',
|
|
|
- redirect: 'report/reportStatistics',
|
|
|
- name: 'Report',
|
|
|
+ path: 'abnormal',
|
|
|
+ name: 'AbnormalBaggageClassificationStatisticsCharts',
|
|
|
hidden: true,
|
|
|
- component: {
|
|
|
- render (h) {
|
|
|
- return h('router-view')
|
|
|
- },
|
|
|
- },
|
|
|
- children: [
|
|
|
- {
|
|
|
- path: 'reportStatistics',
|
|
|
- name: 'ReportStatistics',
|
|
|
- hidden: true,
|
|
|
- component: () =>
|
|
|
- import(
|
|
|
- '@/views/statisticsCharts/views/report/reportStatistics'
|
|
|
- ),
|
|
|
- meta: {
|
|
|
- title: '运送效率报表统计',
|
|
|
- roles: ['scanning_node_and_location_analysis'],
|
|
|
- },
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'transitTables',
|
|
|
- name: 'TransitTables',
|
|
|
- hidden: true,
|
|
|
- component: () =>
|
|
|
- import('@/views/statisticsCharts/views/report/transitTables'),
|
|
|
- meta: {
|
|
|
- title: '中转四个流向统计',
|
|
|
- roles: ['scanning_node_and_location_analysis'],
|
|
|
- },
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'transferDirectionTable',
|
|
|
- name: 'TransferDirectionTable',
|
|
|
- hidden: true,
|
|
|
- component: () =>
|
|
|
- import(
|
|
|
- '@/views/statisticsCharts/views/report/transferDirectionTable'
|
|
|
- ),
|
|
|
- meta: {
|
|
|
- title: '中转流向明细统计',
|
|
|
- roles: ['scanning_node_and_location_analysis'],
|
|
|
- },
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'transferBaggageTable',
|
|
|
- name: 'TransferBaggageTable',
|
|
|
- hidden: true,
|
|
|
- component: () =>
|
|
|
- import(
|
|
|
- '@/views/statisticsCharts/views/report/transferBaggageTable'
|
|
|
- ),
|
|
|
- meta: {
|
|
|
- title: '中转行李因素分析统计',
|
|
|
- roles: ['scanning_node_and_location_analysis'],
|
|
|
- },
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'baggageProportionTable',
|
|
|
- name: 'BaggageProportionTable',
|
|
|
- hidden: true,
|
|
|
- component: () =>
|
|
|
- import(
|
|
|
- '@/views/statisticsCharts/views/report/baggageProportionTable'
|
|
|
- ),
|
|
|
- meta: {
|
|
|
- title: '中转行李比例明细统计',
|
|
|
- roles: ['scanning_node_and_location_analysis'],
|
|
|
- },
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'scanningStatistics',
|
|
|
- name: 'ScanningStatistics',
|
|
|
- hidden: true,
|
|
|
- component: () =>
|
|
|
- import(
|
|
|
- '@/views/statisticsCharts/views/report/scanningStatistics'
|
|
|
- ),
|
|
|
- meta: {
|
|
|
- title: '航站BRS扫描统计',
|
|
|
- roles: ['scanning_node_and_location_analysis'],
|
|
|
- },
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'scanDataTable',
|
|
|
- name: 'scanDataTable',
|
|
|
- hidden: true,
|
|
|
- component: () =>
|
|
|
- import('@/views/statisticsCharts/views/report/scanDataTable'),
|
|
|
- meta: {
|
|
|
- title: 'Mannual Load扫描数据统计表',
|
|
|
- roles: ['scanning_node_and_location_analysis'],
|
|
|
- },
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'rfldTable',
|
|
|
- name: 'rfldTable',
|
|
|
- hidden: true,
|
|
|
- component: () =>
|
|
|
- import('@/views/statisticsCharts/views/report/rfldTable'),
|
|
|
- meta: {
|
|
|
- title: '航易行RFID扫描数据统计表',
|
|
|
- roles: ['scanning_node_and_location_analysis'],
|
|
|
- },
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'Percentageofbaggage',
|
|
|
- name: 'Percentageofbaggage',
|
|
|
- hidden: true,
|
|
|
- component: () =>
|
|
|
- import('@/views/statisticsCharts/views/report/Percentageofbaggage'),
|
|
|
- meta: {
|
|
|
- title: '行李全流程服务水平百分比',
|
|
|
- roles: ['scanning_node_and_location_analysis'],
|
|
|
- },
|
|
|
- },
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'specialClassification',
|
|
|
- redirect: 'specialClassification/special',
|
|
|
- name: 'SpecialStatistics',
|
|
|
- hidden: true,
|
|
|
- component: {
|
|
|
- render (h) {
|
|
|
- return h('router-view')
|
|
|
- },
|
|
|
+ component: () =>
|
|
|
+ import(
|
|
|
+ '@/views/statisticsCharts/views/abnormalBaggageClassificationStatisticsCharts'
|
|
|
+ ),
|
|
|
+ meta: {
|
|
|
+ title: '异常行李分析',
|
|
|
},
|
|
|
- children: [
|
|
|
- {
|
|
|
- path: 'special',
|
|
|
- name: 'SpecialBaggageClassificationStatisticsCharts',
|
|
|
- hidden: true,
|
|
|
- component: () =>
|
|
|
- import(
|
|
|
- '@/views/statisticsCharts/views/special/specialBaggageClassificationStatisticsCharts'
|
|
|
- ),
|
|
|
- meta: { title: '特殊行李分类统计' },
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'abnormal',
|
|
|
- name: 'AbnormalBaggageClassificationStatisticsCharts',
|
|
|
- hidden: true,
|
|
|
- component: () =>
|
|
|
- import(
|
|
|
- '@/views/statisticsCharts/views/special/abnormalBaggageClassificationStatisticsCharts'
|
|
|
- ),
|
|
|
- meta: { title: '异常行李分类统计' },
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'compensationBaggage',
|
|
|
- name: 'CompensationBaggageClassificationStatisticsCharts',
|
|
|
- hidden: true,
|
|
|
- component: () =>
|
|
|
- import(
|
|
|
- '@/views/statisticsCharts/views/special/compensationBaggageClassificationStatisticsCharts'
|
|
|
- ),
|
|
|
- meta: { title: '赔偿行李分类统计' },
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'compensation',
|
|
|
- name: 'CompensationClassificationStatisticsCharts',
|
|
|
- hidden: true,
|
|
|
- component: () =>
|
|
|
- import(
|
|
|
- '@/views/statisticsCharts/views/special/compensationClassificationStatisticsCharts'
|
|
|
- ),
|
|
|
- meta: { title: '赔偿金额分类统计' },
|
|
|
- },
|
|
|
- ],
|
|
|
- },
|
|
|
- {
|
|
|
- path: 'statisticalAnalysis',
|
|
|
- name: 'statisticalAnalysisContent',
|
|
|
- meta: { title: '统计分析' },
|
|
|
- component: () => import('@/views/statisticalAnalysis/components'),
|
|
|
},
|
|
|
],
|
|
|
},
|