routes-file-one.ts 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. import Layout from '@/layout'
  2. const HomeRoutes = [
  3. {
  4. path: '/',
  5. component: Layout,
  6. hidden: true,
  7. children: [
  8. {
  9. path: '',
  10. name: 'HomePage',
  11. component: () => import('@/views/HomePage/index.vue'),
  12. },
  13. ],
  14. },
  15. {
  16. path: '/dashboard',
  17. component: Layout,
  18. children: [
  19. {
  20. path: '/dashboard',
  21. name: 'Dashboard',
  22. redirect: '/dashboard/homeOut',
  23. component: {
  24. render: () => h(resolveComponent('router-view')),
  25. },
  26. //using el svg icon, the elSvgIcon first when at the same time using elSvgIcon and icon
  27. meta: {
  28. title: '决策管理驾驶舱',
  29. elSvgIcon: 'Histogram',
  30. roles: ['decision_management_cockpit_menu'],
  31. },
  32. children: [
  33. {
  34. path: '/dashboard/departure',
  35. name: 'DashboardDeparture',
  36. component: () => import('@/views/dashboard/departure.vue'),
  37. meta: {
  38. title: '国内出港',
  39. roles: ['domestic_departure_page'],
  40. },
  41. },
  42. {
  43. path: '/dashboard/arrival',
  44. name: 'DashboardArrival',
  45. component: () => import('@/views/dashboard/arrival.vue'),
  46. meta: { title: '国内进港', roles: ['domestic_arrival_page'] },
  47. },
  48. {
  49. path: '/dashboard/internationalDeparture',
  50. name: 'DashboardnternationalDeparture',
  51. component: () =>
  52. import('@/views/dashboard/internationalDeparture.vue'),
  53. meta: {
  54. title: '国际出港',
  55. roles: ['international_departure_page'],
  56. },
  57. },
  58. {
  59. path: '/dashboard/internationalArrival',
  60. name: 'DashboardInternationalArrival',
  61. component: () =>
  62. import('@/views/dashboard/internationalArrival.vue'),
  63. meta: { title: '国际进港', roles: ['international_arrival_page'] },
  64. },
  65. ],
  66. },
  67. ],
  68. },
  69. ]
  70. // const DemoRoutes = {
  71. // path: '/example',
  72. // component: Layout,
  73. // redirect: '/example/table',
  74. // name: 'Example',
  75. // meta: { title: 'Example', icon: 'example' },
  76. // children: [
  77. // {
  78. // path: 'table',
  79. // name: 'Table',
  80. // component: () => import('@/views/table/index.vue'),
  81. // meta: { title: 'Table', icon: 'table' }
  82. // },
  83. // {
  84. // path: 'tree',
  85. // name: 'Tree',
  86. // component: () => import('@/views/tree/index.vue'),
  87. // meta: { title: 'Tree', icon: 'tree' }
  88. // },
  89. // {
  90. // path: 'worker-Demo',
  91. // name: 'WorkerDemo',
  92. // component: () => import('@/views/example/worker'),
  93. // meta: { title: 'Worker Demo', icon: 'nested' }
  94. // }
  95. // ]
  96. // }
  97. export default HomeRoutes