routes-file-temp.js 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923
  1. import Layout from '@/layout'
  2. const uploadRoutes = {
  3. path: '/upload',
  4. name: 'Upload',
  5. component: Layout,
  6. children: [
  7. {
  8. path: '/upload',
  9. meta: {
  10. title: '速运行李上传',
  11. imgstyle: 'ic_list_nav_upload_default.png',
  12. imgstyleup: 'ic_list_nav_upload_check.png',
  13. },
  14. component: {
  15. render(c) {
  16. return c('router-view')
  17. },
  18. },
  19. children: [
  20. {
  21. path: '/upload',
  22. name: 'UploadView',
  23. component: () => import('@/views/upload/index.vue'),
  24. },
  25. ],
  26. },
  27. ],
  28. }
  29. const statisticsChartsRoutes = {
  30. path: '/statisticsCharts',
  31. name: 'StatisticsCharts',
  32. component: Layout,
  33. meta: {
  34. title: '统计图表',
  35. },
  36. children: [
  37. {
  38. path: '/statisticsCharts',
  39. redirect: 'airlineCompany',
  40. component: () => import('@/views/statisticsCharts'),
  41. meta: {
  42. title: '统计图表',
  43. imgstyle: 'ic_list_nav_arrive_default.png',
  44. imgstyleup: 'ic_list_nav_arrive_check.png',
  45. },
  46. children: [
  47. {
  48. path: 'airlineCompany',
  49. redirect: 'airlineCompany/flight',
  50. name: 'AirlineCompanyStatistics',
  51. hidden: true,
  52. component: {
  53. render(h) {
  54. return h('router-view')
  55. },
  56. },
  57. children: [
  58. {
  59. path: 'flight',
  60. name: 'FlightStatisticsCharts',
  61. hidden: true,
  62. component: () =>
  63. import(
  64. '@/views/statisticsCharts/views/airlineCompany/flightStatisticsCharts'
  65. ),
  66. meta: {
  67. title: '航班量统计',
  68. roles: ['flight_volume_statistics'],
  69. },
  70. },
  71. {
  72. path: 'baggage',
  73. name: 'BaggageStatisticsCharts',
  74. hidden: true,
  75. component: () =>
  76. import(
  77. '@/views/statisticsCharts/views/airlineCompany/baggageStatisticsCharts'
  78. ),
  79. meta: { title: '行李量统计', roles: ['baggage_statistics'] },
  80. },
  81. {
  82. path: 'specialBaggage',
  83. name: 'SpecialBaggageStatisticsCharts',
  84. hidden: true,
  85. component: () =>
  86. import(
  87. '@/views/statisticsCharts/views/airlineCompany/specialBaggageStatisticsCharts'
  88. ),
  89. meta: { title: '特殊行李量统计' },
  90. },
  91. {
  92. path: 'baggagePassenger',
  93. name: 'BaggagePassengerStatisticsCharts',
  94. hidden: true,
  95. component: () =>
  96. import(
  97. '@/views/statisticsCharts/views/airlineCompany/baggagePassengerStatisticsCharts'
  98. ),
  99. meta: { title: '行李旅客量统计' },
  100. },
  101. {
  102. path: 'baggageAverage',
  103. name: 'BaggageAverageStatisticsCharts',
  104. hidden: true,
  105. component: () =>
  106. import(
  107. '@/views/statisticsCharts/views/airlineCompany/baggageAverageStatisticsCharts'
  108. ),
  109. meta: { title: '平均行李量统计' },
  110. },
  111. {
  112. path: 'abnormalBaggage',
  113. name: 'AbnormalBaggageStatisticsCharts',
  114. hidden: true,
  115. component: () =>
  116. import(
  117. '@/views/statisticsCharts/views/airlineCompany/abnormalBaggageStatisticsCharts'
  118. ),
  119. meta: { title: '异常行李量统计' },
  120. },
  121. {
  122. path: 'complaintBaggage',
  123. name: 'ComplaintBaggageStatisticsCharts',
  124. hidden: true,
  125. component: () =>
  126. import(
  127. '@/views/statisticsCharts/views/airlineCompany/complaintBaggageStatisticsCharts'
  128. ),
  129. meta: { title: '投诉行李量统计' },
  130. },
  131. {
  132. path: 'compensationBaggage',
  133. name: 'CompensationBaggageStatisticsCharts',
  134. hidden: true,
  135. component: () =>
  136. import(
  137. '@/views/statisticsCharts/views/airlineCompany/compensationBaggageStatisticsCharts'
  138. ),
  139. meta: { title: '赔偿行李量统计' },
  140. },
  141. {
  142. path: 'compensation',
  143. name: 'CompensationStatisticsCharts',
  144. hidden: true,
  145. component: () =>
  146. import(
  147. '@/views/statisticsCharts/views/airlineCompany/compensationStatisticsCharts'
  148. ),
  149. meta: { title: '赔偿金额统计' },
  150. },
  151. ],
  152. },
  153. {
  154. path: 'passengerClassification',
  155. redirect: 'passengerClassification/baggagePassenger',
  156. name: 'PassengerStatistics',
  157. hidden: true,
  158. component: {
  159. render(h) {
  160. return h('router-view')
  161. },
  162. },
  163. children: [
  164. {
  165. path: 'baggagePassenger',
  166. name: 'PassengerStatisticsCharts',
  167. hidden: true,
  168. component: () =>
  169. import(
  170. '@/views/statisticsCharts/views/passengerClassification/baggagePassengerStatisticsCharts'
  171. ),
  172. meta: { title: '行李旅客量统计' },
  173. },
  174. {
  175. path: 'baggage',
  176. name: 'PassengerBaggageStatisticsCharts',
  177. hidden: true,
  178. component: () =>
  179. import(
  180. '@/views/statisticsCharts/views/passengerClassification/baggageStatisticsCharts'
  181. ),
  182. meta: { title: '行李量统计' },
  183. },
  184. {
  185. path: 'specialBaggage',
  186. name: 'PassengerSpecialBaggageStatisticsCharts',
  187. hidden: true,
  188. component: () =>
  189. import(
  190. '@/views/statisticsCharts/views/passengerClassification/specialBaggageStatisticsCharts'
  191. ),
  192. meta: { title: '特殊行李量统计' },
  193. },
  194. {
  195. path: 'abnormalBaggage',
  196. name: 'PassengerAbnormalBaggageStatisticsCharts',
  197. hidden: true,
  198. component: () =>
  199. import(
  200. '@/views/statisticsCharts/views/passengerClassification/abnormalBaggageStatisticsCharts'
  201. ),
  202. meta: { title: '异常行李量统计' },
  203. },
  204. {
  205. path: 'complaintBaggage',
  206. name: 'PassengerComplaintBaggageStatisticsCharts',
  207. hidden: true,
  208. component: () =>
  209. import(
  210. '@/views/statisticsCharts/views/passengerClassification/complaintBaggageStatisticsCharts'
  211. ),
  212. meta: { title: '投诉行李量统计' },
  213. },
  214. {
  215. path: 'compensationBaggage',
  216. name: 'PassengerCompensationBaggageStatisticsCharts',
  217. hidden: true,
  218. component: () =>
  219. import(
  220. '@/views/statisticsCharts/views/passengerClassification/compensationBaggageStatisticsCharts'
  221. ),
  222. meta: { title: '赔偿行李量统计' },
  223. },
  224. {
  225. path: 'compensation',
  226. name: 'PassengerCompensationStatisticsCharts',
  227. hidden: true,
  228. component: () =>
  229. import(
  230. '@/views/statisticsCharts/views/passengerClassification/compensationStatisticsCharts'
  231. ),
  232. meta: { title: '赔偿金额统计' },
  233. },
  234. ],
  235. },
  236. {
  237. path: 'flightClassification',
  238. redirect: 'flightClassification/flight',
  239. name: 'FlightClassificationStatistics',
  240. hidden: true,
  241. component: {
  242. render(h) {
  243. return h('router-view')
  244. },
  245. },
  246. children: [
  247. {
  248. path: 'flight',
  249. name: 'FlightClassificationStatisticsCharts',
  250. hidden: true,
  251. component: () =>
  252. import(
  253. '@/views/statisticsCharts/views/flightClassification/flightClassificationStatisticsCharts'
  254. ),
  255. meta: { title: '航班量统计' },
  256. },
  257. {
  258. path: 'baggage',
  259. name: 'FlightBaggageClassificationStatisticsCharts',
  260. hidden: true,
  261. component: () =>
  262. import(
  263. '@/views/statisticsCharts/views/flightClassification/baggageClassificationStatisticsCharts'
  264. ),
  265. meta: { title: '行李量统计' },
  266. },
  267. {
  268. path: 'passenger',
  269. name: 'FlightPassengerClassificationStatisticsCharts',
  270. hidden: true,
  271. component: () =>
  272. import(
  273. '@/views/statisticsCharts/views/flightClassification/passengerClassificationStatisticsCharts'
  274. ),
  275. meta: { title: '行李旅客量统计' },
  276. },
  277. ],
  278. },
  279. {
  280. path: 'node',
  281. name: 'NodeStatisticsCharts',
  282. hidden: true,
  283. component: () =>
  284. import('@/views/statisticsCharts/views/nodeStatisticsCharts'),
  285. meta: {
  286. title: '扫描节点与位置分析',
  287. roles: ['scanning_node_and_location_analysis'],
  288. },
  289. },
  290. {
  291. path: 'report',
  292. redirect: 'report/reportStatistics',
  293. name: 'Report',
  294. hidden: true,
  295. component: {
  296. render(h) {
  297. return h('router-view')
  298. },
  299. },
  300. children: [
  301. {
  302. path: 'reportStatistics',
  303. name: 'ReportStatistics',
  304. hidden: true,
  305. component: () =>
  306. import(
  307. '@/views/statisticsCharts/views/report/reportStatistics'
  308. ),
  309. meta: {
  310. title: '运送效率报表统计',
  311. roles: ['scanning_node_and_location_analysis'],
  312. },
  313. },
  314. {
  315. path: 'transitTables',
  316. name: 'TransitTables',
  317. hidden: true,
  318. component: () =>
  319. import('@/views/statisticsCharts/views/report/transitTables'),
  320. meta: {
  321. title: '中转四个流向统计',
  322. roles: ['scanning_node_and_location_analysis'],
  323. },
  324. },
  325. {
  326. path: 'transferDirectionTable',
  327. name: 'TransferDirectionTable',
  328. hidden: true,
  329. component: () =>
  330. import(
  331. '@/views/statisticsCharts/views/report/transferDirectionTable'
  332. ),
  333. meta: {
  334. title: '中转流向明细统计',
  335. roles: ['scanning_node_and_location_analysis'],
  336. },
  337. },
  338. {
  339. path: 'transferBaggageTable',
  340. name: 'TransferBaggageTable',
  341. hidden: true,
  342. component: () =>
  343. import(
  344. '@/views/statisticsCharts/views/report/transferBaggageTable'
  345. ),
  346. meta: {
  347. title: '中转行李因素分析统计',
  348. roles: ['scanning_node_and_location_analysis'],
  349. },
  350. },
  351. {
  352. path: 'baggageProportionTable',
  353. name: 'BaggageProportionTable',
  354. hidden: true,
  355. component: () =>
  356. import(
  357. '@/views/statisticsCharts/views/report/baggageProportionTable'
  358. ),
  359. meta: {
  360. title: '中转行李比例明细统计',
  361. roles: ['scanning_node_and_location_analysis'],
  362. },
  363. },
  364. {
  365. path: 'scanningStatistics',
  366. name: 'ScanningStatistics',
  367. hidden: true,
  368. component: () =>
  369. import(
  370. '@/views/statisticsCharts/views/report/scanningStatistics'
  371. ),
  372. meta: {
  373. title: '航站BRS扫描统计',
  374. roles: ['scanning_node_and_location_analysis'],
  375. },
  376. },
  377. {
  378. path: 'scanDataTable',
  379. name: 'scanDataTable',
  380. hidden: true,
  381. component: () =>
  382. import('@/views/statisticsCharts/views/report/scanDataTable'),
  383. meta: {
  384. title: 'Manual Load扫描数据统计表',
  385. roles: ['scanning_node_and_location_analysis'],
  386. },
  387. },
  388. {
  389. path: 'rfldTable',
  390. name: 'rfldTable',
  391. hidden: true,
  392. component: () =>
  393. import('@/views/statisticsCharts/views/report/rfldTable'),
  394. meta: {
  395. title: '航易行RFID扫描数据统计表',
  396. roles: ['scanning_node_and_location_analysis'],
  397. },
  398. },
  399. {
  400. path: 'Percentageofbaggage',
  401. name: 'Percentageofbaggage',
  402. hidden: true,
  403. component: () =>
  404. import('@/views/statisticsCharts/views/report/Percentageofbaggage'),
  405. meta: {
  406. title: '行李全流程服务水平百分比',
  407. roles: ['scanning_node_and_location_analysis'],
  408. },
  409. },
  410. {
  411. path: 'WorkloadTable',
  412. name: 'WorkloadTable',
  413. hidden: true,
  414. component: () =>
  415. import('@/views/statisticsCharts/views/report/workloadTable'),
  416. meta: {
  417. title: '工作量统计',
  418. roles: ['scanning_node_and_location_analysis'],
  419. },
  420. },
  421. ],
  422. },
  423. {
  424. path: 'specialClassification',
  425. redirect: 'specialClassification/special',
  426. name: 'SpecialStatistics',
  427. hidden: true,
  428. component: {
  429. render(h) {
  430. return h('router-view')
  431. },
  432. },
  433. children: [
  434. {
  435. path: 'special',
  436. name: 'SpecialBaggageClassificationStatisticsCharts',
  437. hidden: true,
  438. component: () =>
  439. import(
  440. '@/views/statisticsCharts/views/special/specialBaggageClassificationStatisticsCharts'
  441. ),
  442. meta: { title: '特殊行李分类统计' },
  443. },
  444. {
  445. path: 'abnormal',
  446. name: 'AbnormalBaggageClassificationStatisticsCharts',
  447. hidden: true,
  448. component: () =>
  449. import(
  450. '@/views/statisticsCharts/views/special/abnormalBaggageClassificationStatisticsCharts'
  451. ),
  452. meta: { title: '异常行李分类统计' },
  453. },
  454. {
  455. path: 'compensationBaggage',
  456. name: 'CompensationBaggageClassificationStatisticsCharts',
  457. hidden: true,
  458. component: () =>
  459. import(
  460. '@/views/statisticsCharts/views/special/compensationBaggageClassificationStatisticsCharts'
  461. ),
  462. meta: { title: '赔偿行李分类统计' },
  463. },
  464. {
  465. path: 'compensation',
  466. name: 'CompensationClassificationStatisticsCharts',
  467. hidden: true,
  468. component: () =>
  469. import(
  470. '@/views/statisticsCharts/views/special/compensationClassificationStatisticsCharts'
  471. ),
  472. meta: { title: '赔偿金额分类统计' },
  473. },
  474. ],
  475. },
  476. {
  477. path: 'statisticalAnalysis',
  478. name: 'statisticalAnalysisContent',
  479. meta: { title: '统计分析' },
  480. component: () => import('@/views/statisticalAnalysis/components'),
  481. },
  482. ],
  483. },
  484. ],
  485. }
  486. const departureRoutes = {
  487. path: '/departure',
  488. name: 'Departure',
  489. component: Layout,
  490. children: [
  491. {
  492. path: '/departure',
  493. component: () => import('@/views/baggageManagementTemp'),
  494. meta: {
  495. title: '离港管理',
  496. imgstyle: 'ic_list_nav_leave_default.png',
  497. imgstyleup: 'ic_list_nav_leave_check.png',
  498. },
  499. children: [
  500. {
  501. path: '/departure',
  502. name: 'DepartureNav',
  503. component: () => import('@/views/baggageManagementTemp'),
  504. meta: {
  505. title: '离港视图',
  506. // title: "行李视图",
  507. roles: ['departure_page'],
  508. keepAlive: true,
  509. },
  510. children: [
  511. {
  512. path: '/departure',
  513. name: 'DepartureTerminalView',
  514. component: () =>
  515. import('@/views/baggageManagementTemp/components/departure'),
  516. meta: { keepAlive: true },
  517. },
  518. {
  519. path: '/departure/flightView',
  520. name: 'DepartureFlightNav',
  521. component: () => import('@/views/baggageManagementTemp'),
  522. meta: { title: '航班视图', keepAlive: true },
  523. children: [
  524. {
  525. path: '/departure/flightView',
  526. name: 'DepartureFlightView',
  527. component: () =>
  528. import(
  529. '@/views/baggageManagementTemp/components/departure/flight'
  530. ),
  531. meta: { keepAlive: true },
  532. },
  533. {
  534. path: '/departure/baggageView',
  535. name: 'DepartureBaggageView',
  536. component: () =>
  537. import(
  538. '@/views/baggageManagementTemp/components/departure/baggage'
  539. ),
  540. meta: { title: '行李视图', keepAlive: true },
  541. },
  542. {
  543. path: '/departure/containerView',
  544. name: 'DepartureContainerNav',
  545. component: () => import('@/views/baggageManagementTemp'),
  546. meta: { title: '容器视图', keepAlive: true },
  547. children: [
  548. {
  549. path: '/departure/containerView',
  550. name: 'DepartureContainerView',
  551. component: () =>
  552. import(
  553. '@/views/baggageManagementTemp/components/departure/container'
  554. ),
  555. meta: { keepAlive: true },
  556. },
  557. {
  558. path: '/departure/containerHistory',
  559. name: 'DepartureContainerHistory',
  560. component: () =>
  561. import(
  562. '@/views/baggageManagementTemp/components/departure/containerHistory'
  563. ),
  564. meta: { title: '历史记录', keepAlive: true },
  565. },
  566. ],
  567. },
  568. ],
  569. },
  570. ],
  571. },
  572. ],
  573. },
  574. ],
  575. }
  576. const arrivalRoutes = {
  577. path: '/arrival',
  578. name: 'Arrival',
  579. component: Layout,
  580. children: [
  581. {
  582. path: '/arrival',
  583. component: () => import('@/views/baggageManagementTemp'),
  584. meta: {
  585. title: '进港管理',
  586. imgstyle: 'ic_list_nav_arrive_default.png',
  587. imgstyleup: 'ic_list_nav_arrive_check.png',
  588. },
  589. children: [
  590. {
  591. path: '/arrival',
  592. name: 'ArrivalNav',
  593. component: () => import('@/views/baggageManagementTemp'),
  594. meta: {
  595. title: '进港视图',
  596. roles: ['inbound_search_page'],
  597. keepAlive: true,
  598. },
  599. children: [
  600. {
  601. path: '/arrival',
  602. name: 'ArrivalTerminalView',
  603. component: () =>
  604. import('@/views/baggageManagementTemp/components/arrival'),
  605. meta: { keepAlive: true },
  606. },
  607. {
  608. path: '/arrival/flightView',
  609. name: 'ArrivalFlightNav',
  610. component: () => import('@/views/baggageManagementTemp'),
  611. meta: { title: '航班视图', keepAlive: true },
  612. children: [
  613. {
  614. path: '/arrival/flightView',
  615. name: 'ArrivalFlightView',
  616. component: () =>
  617. import(
  618. '@/views/baggageManagementTemp/components/arrival/flight'
  619. ),
  620. meta: { keepAlive: true },
  621. },
  622. {
  623. path: '/arrival/baggageView',
  624. name: 'ArrivalBaggageView',
  625. component: () =>
  626. import(
  627. '@/views/baggageManagementTemp/components/arrival/baggage'
  628. ),
  629. meta: { title: '行李视图', keepAlive: true },
  630. },
  631. {
  632. path: '/arrival/containerView',
  633. name: 'ArrivalContainerNav',
  634. component: () => import('@/views/baggageManagementTemp'),
  635. meta: { title: '容器视图', keepAlive: true },
  636. children: [
  637. {
  638. path: '/arrival/containerView',
  639. name: 'ArrivalContainerView',
  640. component: () =>
  641. import(
  642. '@/views/baggageManagementTemp/components/arrival/container'
  643. ),
  644. meta: { keepAlive: true },
  645. },
  646. {
  647. path: '/arrival/containerHistory',
  648. name: 'ArrivalContainerHistory',
  649. component: () =>
  650. import(
  651. '@/views/baggageManagementTemp/components/arrival/containerHistory'
  652. ),
  653. meta: { title: '容器历史', keepAlive: true },
  654. },
  655. ],
  656. },
  657. ],
  658. },
  659. ],
  660. },
  661. ],
  662. },
  663. ],
  664. }
  665. const transferRoutes = {
  666. path: '/transfer',
  667. name: 'Transfer',
  668. component: Layout,
  669. children: [
  670. {
  671. path: '/transfer',
  672. component: () => import('@/views/baggageManagementTemp'),
  673. meta: {
  674. title: '中转管理',
  675. imgstyle: 'ic_list_nav_transit_default.png',
  676. imgstyleup: 'ic_list_nav_transit_check.png',
  677. },
  678. redirect: '/transfer/arrival',
  679. children: [
  680. {
  681. path: '/transfer/arrival',
  682. name: 'TransferArrivalNav',
  683. component: () => import('@/views/baggageManagementTemp'),
  684. meta: {
  685. title: '中转进港',
  686. roles: ['transit_inbound_page'],
  687. keepAlive: true,
  688. },
  689. children: [
  690. {
  691. path: '/transfer/arrival',
  692. name: 'TransferArrivalTerminalView',
  693. component: () =>
  694. import(
  695. '@/views/baggageManagementTemp/components/transferArrival'
  696. ),
  697. meta: { keepAlive: true },
  698. },
  699. {
  700. path: '/transfer/arrival/flightView',
  701. name: 'TransferArrivalFlightNav',
  702. component: () => import('@/views/baggageManagementTemp'),
  703. meta: { title: '航班视图', keepAlive: true },
  704. children: [
  705. {
  706. path: '/transfer/arrival/flightView',
  707. name: 'TransferArrivalFlightView',
  708. component: () =>
  709. import(
  710. '@/views/baggageManagementTemp/components/transferArrival/flight'
  711. ),
  712. meta: { keepAlive: true },
  713. },
  714. {
  715. path: '/transfer/arrival/baggageView',
  716. name: 'TransferArrivalBaggageView',
  717. component: () =>
  718. import(
  719. '@/views/baggageManagementTemp/components/transferArrival/baggage'
  720. ),
  721. meta: { title: '行李视图', keepAlive: true },
  722. },
  723. {
  724. path: '/transfer/arrival/containerView',
  725. name: 'TransferArrivalContainerNav',
  726. component: () => import('@/views/baggageManagementTemp'),
  727. meta: { title: '容器视图', keepAlive: true },
  728. children: [
  729. {
  730. path: '/transfer/arrival/containerView',
  731. name: 'TransferArrivalContainerView',
  732. component: () =>
  733. import(
  734. '@/views/baggageManagementTemp/components/arrival/container'
  735. ),
  736. meta: { keepAlive: true },
  737. },
  738. {
  739. path: '/transfer/arrival/containerHistory',
  740. name: 'TransferArrivalContainerHistory',
  741. component: () =>
  742. import(
  743. '@/views/baggageManagementTemp/components/transferArrival/containerHistory'
  744. ),
  745. meta: { title: '容器历史', keepAlive: true },
  746. },
  747. ],
  748. },
  749. ],
  750. },
  751. ],
  752. },
  753. {
  754. path: '/transfer/departure',
  755. name: 'TransferDepartureNav',
  756. component: () => import('@/views/baggageManagementTemp'),
  757. meta: {
  758. title: '中转离港',
  759. roles: ['transit_departure_page'],
  760. keepAlive: true,
  761. },
  762. children: [
  763. {
  764. path: '/transfer/departure',
  765. name: 'TransferDepartureTerminalView',
  766. component: () =>
  767. import(
  768. '@/views/baggageManagementTemp/components/transferDeparture'
  769. ),
  770. meta: { keepAlive: true },
  771. },
  772. {
  773. path: '/transfer/departure/flightView',
  774. name: 'TransferDepartureFlightNav',
  775. component: () => import('@/views/baggageManagementTemp'),
  776. meta: { title: '航班视图', keepAlive: true },
  777. children: [
  778. {
  779. path: '/transfer/departure/flightView',
  780. name: 'TransferDepartureFlightView',
  781. component: () =>
  782. import(
  783. '@/views/baggageManagementTemp/components/transferDeparture/flight'
  784. ),
  785. meta: { keepAlive: true },
  786. },
  787. {
  788. path: '/transfer/departure/baggageView',
  789. name: 'TransferDepartureBaggageView',
  790. component: () =>
  791. import(
  792. '@/views/baggageManagementTemp/components/transferDeparture/baggage'
  793. ),
  794. meta: { title: '行李视图', keepAlive: true },
  795. },
  796. {
  797. path: '/transfer/departure/containerView',
  798. name: 'TransferDepartureContainerNav',
  799. component: () => import('@/views/baggageManagementTemp'),
  800. meta: { title: '容器视图', keepAlive: true },
  801. children: [
  802. {
  803. path: '/transfer/departure/containerView',
  804. name: 'TransferDepartureContainerView',
  805. component: () =>
  806. import(
  807. '@/views/baggageManagementTemp/components/transferDeparture/container'
  808. ),
  809. meta: { keepAlive: true },
  810. },
  811. {
  812. path: '/transfer/departure/containerHistory',
  813. name: 'TransferDepartureContainerHistory',
  814. component: () =>
  815. import(
  816. '@/views/baggageManagementTemp/components/transferDeparture/containerHistory'
  817. ),
  818. meta: { title: '容器历史', keepAlive: true },
  819. },
  820. ],
  821. },
  822. ],
  823. },
  824. ],
  825. },
  826. ],
  827. },
  828. ],
  829. }
  830. // 高级查询
  831. const advanceRoutes = {
  832. path: '/advance',
  833. name: 'Advance',
  834. component: Layout,
  835. children: [
  836. {
  837. path: '/advance',
  838. component: () => import('@/views/advancedQuery'),
  839. meta: {
  840. title: '高级查询',
  841. imgstyle: 'ic_list_nav_search_default.png',
  842. imgstyleup: 'ic_list_nav_search_check.png',
  843. },
  844. children: [
  845. {
  846. path: '/advance',
  847. name: 'AdvancedQuery',
  848. component: () => import('@/views/advancedQuery'),
  849. meta: { keepAlive: true },
  850. children: [
  851. {
  852. path: '/advance',
  853. name: 'AdvancedHome',
  854. component: () =>
  855. import('@/views/advancedQuery/views/advancedHome.vue'),
  856. meta: { keepAlive: true },
  857. },
  858. {
  859. path: 'advanceNew',
  860. name: 'AdvancedNew',
  861. component: () =>
  862. import('@/views/advancedQuery/views/advancedNew.vue'),
  863. meta: { keepAlive: true },
  864. },
  865. {
  866. path: 'flightView',
  867. name: 'AdvancedFlight',
  868. component: () =>
  869. import('@/views/advancedQuery/views/advancedFlight.vue'),
  870. meta: { title: '航班视图', keepAlive: true },
  871. },
  872. {
  873. path: 'baggageView',
  874. name: 'AdvancedBag',
  875. component: () =>
  876. import('@/views/advancedQuery/views/advancedBag.vue'),
  877. meta: { title: '行李视图', keepAlive: true },
  878. },
  879. {
  880. path: 'containerView',
  881. name: 'AdvancedContainerNav',
  882. component: () => import('@/views/advancedQuery'),
  883. meta: { title: '容器视图', keepAlive: true },
  884. children: [
  885. {
  886. path: '/advance/containerView',
  887. name: 'AdvancedContainerView',
  888. component: () =>
  889. import('@/views/advancedQuery/views/advancedContainer.vue'),
  890. meta: { keepAlive: true },
  891. },
  892. {
  893. path: '/advance/containerHistory',
  894. name: 'AdvancedContainerHistory',
  895. component: () =>
  896. import(
  897. '@/views/advancedQuery/views/advancedContainerHistory.vue'
  898. ),
  899. meta: { title: '容器历史', keepAlive: true },
  900. },
  901. ],
  902. },
  903. ],
  904. },
  905. ],
  906. },
  907. ],
  908. }
  909. export default [
  910. uploadRoutes,
  911. statisticsChartsRoutes,
  912. transferRoutes,
  913. arrivalRoutes,
  914. departureRoutes,
  915. advanceRoutes,
  916. ]