123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- import Layout from '@/layout'
- const HomeRoutes = [
- {
- path: '/',
- component: Layout,
- hidden: true,
- children: [
- {
- path: '',
- name: 'HomePage',
- component: () => import('@/views/HomePage/index.vue'),
- },
- ],
- },
- {
- path: '/dashboard',
- component: Layout,
- children: [
- {
- path: '/dashboard',
- name: 'Dashboard',
- redirect: '/dashboard/homeOut',
- component: {
- render: () => h(resolveComponent('router-view')),
- },
- //using el svg icon, the elSvgIcon first when at the same time using elSvgIcon and icon
- meta: {
- title: '决策管理驾驶舱',
- elSvgIcon: 'Histogram',
- roles: ['decision_management_cockpit_menu'],
- },
- children: [
- {
- path: '/dashboard/departure',
- name: 'DashboardDeparture',
- component: () => import('@/views/dashboard/departure.vue'),
- meta: {
- title: '国内出港',
- roles: ['domestic_departure_page'],
- },
- },
- {
- path: '/dashboard/arrival',
- name: 'DashboardArrival',
- component: () => import('@/views/dashboard/arrival.vue'),
- meta: { title: '国内进港', roles: ['domestic_arrival_page'] },
- },
- {
- path: '/dashboard/internationalDeparture',
- name: 'DashboardnternationalDeparture',
- component: () =>
- import('@/views/dashboard/internationalDeparture.vue'),
- meta: {
- title: '国际出港',
- roles: ['international_departure_page'],
- },
- },
- {
- path: '/dashboard/internationalArrival',
- name: 'DashboardInternationalArrival',
- component: () =>
- import('@/views/dashboard/internationalArrival.vue'),
- meta: { title: '国际进港', roles: ['international_arrival_page'] },
- },
- ],
- },
- ],
- },
- ]
- // const DemoRoutes = {
- // path: '/example',
- // component: Layout,
- // redirect: '/example/table',
- // name: 'Example',
- // meta: { title: 'Example', icon: 'example' },
- // children: [
- // {
- // path: 'table',
- // name: 'Table',
- // component: () => import('@/views/table/index.vue'),
- // meta: { title: 'Table', icon: 'table' }
- // },
- // {
- // path: 'tree',
- // name: 'Tree',
- // component: () => import('@/views/tree/index.vue'),
- // meta: { title: 'Tree', icon: 'tree' }
- // },
- // {
- // path: 'worker-Demo',
- // name: 'WorkerDemo',
- // component: () => import('@/views/example/worker'),
- // meta: { title: 'Worker Demo', icon: 'nested' }
- // }
- // ]
- // }
- export default HomeRoutes
|