| | |
| | | hidden: true |
| | | }, |
| | | { |
| | | path: '/car/vehicle-data-monitor', |
| | | component: Layout, |
| | | hidden: true, |
| | | children: [ |
| | | { |
| | | path: 'index', |
| | | name: 'vehicle-data-monitor', |
| | | component: () => import('@/views/system/vehicle-data-monitor/index'), |
| | | meta: { title: '车辆过卡口数据一致性', activeMenu: '/system/vehicle-data-monitor' } |
| | | } |
| | | ] |
| | | }, |
| | | { |
| | | path: '/check-result/contract', |
| | | component: Layout, |
| | | hidden: true, |
| | | children: [ |
| | | { |
| | | path: 'detail', |
| | | name: 'check-result-contract', |
| | | component: () => import('@/views/system/check-result/contract/detail'), |
| | | meta: { title: '合同结果详情', activeMenu: '/system/check-result/contract' } |
| | | } |
| | | ] |
| | | }, |
| | | { |
| | | path: '/check-result/city', |
| | | component: Layout, |
| | | hidden: true, |
| | | children: [ |
| | | { |
| | | path: 'detail', |
| | | name: 'check-result-city', |
| | | component: () => import('@/views/system/check-result/city/detail'), |
| | | meta: { title: '市局考核结果详情', activeMenu: '/system/check-result/city' } |
| | | } |
| | | ] |
| | | }, |
| | | { |
| | | path: '/check-result/province', |
| | | component: Layout, |
| | | hidden: true, |
| | | children: [ |
| | | { |
| | | path: 'detail', |
| | | name: 'check-result-province', |
| | | component: () => import('@/views/system/check-result/province/detail'), |
| | | meta: { title: '省厅考核结果详情', activeMenu: '/system/check-result/province' } |
| | | } |
| | | ] |
| | | }, |
| | | { |
| | | path: '/register', |
| | | component: () => import('@/views/register'), |
| | | hidden: true |
| | |
| | | |
| | | // 动态路由,基于用户权限动态去加载 |
| | | export const dynamicRoutes = [ |
| | | |
| | | { |
| | | path: '/data-manage/data-detail', |
| | | component: Layout, |
| | | hidden: true, |
| | | permissions: ['data:manage:detail'], |
| | | children: [ |
| | | { |
| | | path: 'index/:type/:typeId', |
| | | component: () => import('@/views/system/data-manage/data-detail'), |
| | | name: 'DataDetail', |
| | | meta: { |
| | | title: '数据详情', |
| | | activeMenu: '/data-manage' |
| | | } |
| | | } |
| | | ] |
| | | }, |
| | | |
| | | { |
| | | path: '/system/user-auth', |
| | | component: Layout, |