|
@@ -98,8 +98,30 @@ const roleRoutes = {
|
|
|
}]
|
|
|
}
|
|
|
|
|
|
+//标段管理
|
|
|
+const lotRoutes = {
|
|
|
+ path: '/lot',
|
|
|
+ component: Layout,
|
|
|
+ meta: { title: '标段管理' },
|
|
|
+ children: [{
|
|
|
+ path: '/lot',
|
|
|
+ name: 'Lot',
|
|
|
+ component: () => import('@/views/lotAuthorization'),
|
|
|
+ meta: { title: '标段管理', icon: 'dashboard', imgstyle: 'ic_home_nav_defaul.png', imgstyleup: 'ic_home_nav_check.png', affix: true },
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '/lot',
|
|
|
+ name: 'lotHome',
|
|
|
+ component: () => import('@/views/lotAuthorization/components/home.vue'),
|
|
|
+ meta: { title: '标段授权', icon: 'authority', imgstyle: 'ic_home_nav_defaul.png', imgstyleup: 'ic_home_nav_check.png' }
|
|
|
+ }
|
|
|
+ ]
|
|
|
+ }]
|
|
|
+}
|
|
|
+
|
|
|
export default [
|
|
|
dashboardRoutes,
|
|
|
authorityRoutes,
|
|
|
- roleRoutes
|
|
|
+ roleRoutes,
|
|
|
+ lotRoutes
|
|
|
]
|