routes-file-seven.ts 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. import Layout from "@/layout";
  2. const HomeRoutes = {
  3. path: "/statisticalanalysis",
  4. component: Layout,
  5. name: "Statisticalanalysis",
  6. redirect: "/statisticalanalysis/loadingweight",
  7. //using el svg icon, the elSvgIcon first when at the same time using elSvgIcon and icon
  8. meta: {
  9. title: "统计分析",
  10. elSvgIcon: "analyseIcon",
  11. breadcrumb: false,
  12. roles: ["statistical_analysis_page"],
  13. },
  14. children: [
  15. {
  16. path: "/statisticalanalysis/loadingweight",
  17. name: "Loadingweight",
  18. meta: {
  19. title: "加货重量统计",
  20. },
  21. component: () =>
  22. import("@/views/statisticalanalysis/loadingweight/index.vue"),
  23. },
  24. {
  25. path: "/statisticalanalysis/flightvolume",
  26. name: "Flightvolume",
  27. meta: {
  28. title: "航班量统计",
  29. },
  30. component: () =>
  31. import("@/views/statisticalanalysis/flightvolume/index.vue"),
  32. },
  33. {
  34. path: "/statisticalanalysis/specialGoodsStatistics",
  35. name: "SpecialGoodsStatistics",
  36. meta: {
  37. title: "特货统计",
  38. },
  39. component: () =>
  40. import("@/views/statisticalanalysis/specialGoodsStatistics/index.vue"),
  41. },
  42. {
  43. path: "/statisticalanalysis/cargovolume",
  44. name: "Cargovolume",
  45. meta: {
  46. title: "货量统计",
  47. },
  48. component: () =>
  49. import("@/views/statisticalanalysis/cargovolume/index.vue"),
  50. },
  51. {
  52. path: "/statisticalanalysis/pickingstatistics",
  53. name: "Pickingstatistics",
  54. meta: {
  55. title: "拉货统计",
  56. },
  57. component: () =>
  58. import("@/views/statisticalanalysis/pickingstatistics/index.vue"),
  59. },
  60. {
  61. path: "/statisticalanalysis/domesticinbound",
  62. name: "Domesticinbound",
  63. meta: {
  64. title: "国内进港保障时间统计",
  65. },
  66. component: () =>
  67. import("@/views/statisticalanalysis/domesticinbound/index.vue"),
  68. },
  69. {
  70. path: "/statisticalanalysis/domesticdeparture",
  71. name: "Domesticdeparture",
  72. meta: {
  73. title: "航班统计",
  74. },
  75. component: () =>
  76. import("@/views/statisticalanalysis/domesticdeparture/index.vue"),
  77. },
  78. // {
  79. // path: "/statisticalanalysis/domesticentry",
  80. // name: "Domesticentry",
  81. // meta: {
  82. // title: "航班统计国内进港",
  83. // },
  84. // component: () =>
  85. // import("@/views/statisticalanalysis/domesticentry/index.vue"),
  86. // },
  87. // {
  88. // path: "/statisticalanalysis/Internationalexport",
  89. // name: "Internationalexport",
  90. // meta: {
  91. // title: "航班统计国际出港",
  92. // },
  93. // component: () =>
  94. // import("@/views/statisticalanalysis/Internationalexport/index.vue"),
  95. // },
  96. // {
  97. // path: "/statisticalanalysis/Internationaladvance",
  98. // name: "Internationaladvance",
  99. // meta: {
  100. // title: "航班统计国际进港",
  101. // },
  102. // component: () =>
  103. // import("@/views/statisticalanalysis/Internationaladvance/index.vue"),
  104. // },
  105. {
  106. path: "/statisticalanalysis/cargoflight",
  107. name: "Cargoflight",
  108. meta: {
  109. title: "货机航班综合查询",
  110. },
  111. component: () =>
  112. import("@/views/statisticalanalysis/cargoflight/index.vue"),
  113. },
  114. {
  115. path: "/statisticalanalysis/cargoperiod",
  116. name: "Cargoperiod",
  117. meta: {
  118. title: "货机航班时段查询",
  119. },
  120. component: () =>
  121. import("@/views/statisticalanalysis/cargoperiod/index.vue"),
  122. },
  123. {
  124. path: "/statisticalanalysis/gantryframe",
  125. name: "Gantryframe",
  126. meta: {
  127. title: "龙门架统计",
  128. },
  129. component: () =>
  130. import("@/views/statisticalanalysis/gantryframe/index.vue"),
  131. },
  132. ],
  133. };
  134. export default [HomeRoutes];