新增系统管理路由配置,包括用户管理、部门管理、角色管理、菜单管理和定时任务管理。

This commit is contained in:
刘倡
2025-07-11 17:26:28 +08:00
parent dcdf1e75f1
commit d594ad95e0
6 changed files with 627 additions and 1 deletions

27
config/router_system.ts Normal file
View 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',
},
],
}]