28 lines
663 B
TypeScript
28 lines
663 B
TypeScript
//审批单
|
|
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',
|
|
},
|
|
],
|
|
}]
|