新增系统管理路由配置,包括用户管理、部门管理、角色管理、菜单管理和定时任务管理。
This commit is contained in:
27
config/router_system.ts
Normal file
27
config/router_system.ts
Normal file
@ -0,0 +1,27 @@
|
||||
//审批单
|
||||
export default [{
|
||||
name: '/System',
|
||||
path: '/System',
|
||||
routes: [
|
||||
{//用户管理
|
||||
path: '/System/User',
|
||||
component: './System/User',
|
||||
},
|
||||
{//部门管理
|
||||
path: '/System/Dept',
|
||||
component: './System/Department',
|
||||
},
|
||||
{//角色管理
|
||||
path: '/System/Role',
|
||||
component: './System/Role',
|
||||
},
|
||||
{//菜单管理
|
||||
path: '/System/Menu',
|
||||
component: './System/Menu',
|
||||
},
|
||||
{//定时任务管理
|
||||
path: '/System/Scheduled',
|
||||
component: './System/Scheduled',
|
||||
},
|
||||
],
|
||||
}]
|
Reference in New Issue
Block a user