|
@@ -164,6 +164,22 @@ function parseMenu(arr: Array<any>) {
|
|
|
}
|
|
|
}
|
|
|
})
|
|
|
+ menus.push({
|
|
|
+ path: '/userManagement',
|
|
|
+ component: Layout,
|
|
|
+ name: 'UserManagement',
|
|
|
+ redirect: '/userManagement/permission',
|
|
|
+ //using el svg icon, the elSvgIcon first when at the same time using elSvgIcon and icon
|
|
|
+ meta: { title: '权限管理', elSvgIcon: 'Fold', show_index: 2 },
|
|
|
+ children: [
|
|
|
+ {
|
|
|
+ path: '/userManagement/permission',
|
|
|
+ name: 'Permission',
|
|
|
+ meta: { title: '权限项管理' },
|
|
|
+ component: () => import('@/views/userManagement/permission/index.vue'),
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ })
|
|
|
const allMenus = menus.length
|
|
|
? menus.sort((a, b) => a.meta.show_index - b.meta.show_index)
|
|
|
: []
|