54 lines
1.5 KiB
TypeScript
54 lines
1.5 KiB
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/Dict',
|
|
component: './System/Dict',
|
|
},
|
|
{//品类管理
|
|
path: '/System/Category',
|
|
component: './CategoryManagement',
|
|
},
|
|
{//品类管理
|
|
name: '品类详情',
|
|
path: '/System/CategoryManagement',
|
|
component: './CategoryManagement/components/CategoryMaintenance',
|
|
},
|
|
{//品类管理
|
|
name: '供应商账号管理',
|
|
path: '/System/SupplierAccount',
|
|
component: './System/SupplierUser',
|
|
},
|
|
{//定时任务管理
|
|
path: '/System/Scheduled',
|
|
component: './System/Scheduled',
|
|
},
|
|
{//操作日志管理
|
|
path: '/System/OperationLog',
|
|
component: './System/OperationLog',
|
|
},
|
|
{//登录日志管理
|
|
path: '/System/LoginLog',
|
|
component: './System/LoginLog',
|
|
},
|
|
],
|
|
}]
|