新增品类管理、操作日志管理和登录日志管理功能,并更新相关路由配置。

This commit is contained in:
刘倡
2025-07-22 17:03:18 +08:00
parent e7502c2b2d
commit 032f04e6aa
9 changed files with 1050 additions and 35 deletions

View File

@ -23,9 +23,26 @@ export default [{
path: '/System/Dict',
component: './System/Dict',
},
{//品类管理
path: '/System/Category',
component: './CategoryManagement',
},
{//品类管理
name: '品类详情',
path: '/System/CategoryManagement',
component: './CategoryManagement/components/CategoryMaintenance',
},
{//定时任务管理
path: '/System/Scheduled',
component: './System/Scheduled',
},
{//操作日志管理
path: '/System/OperationLog',
component: './System/OperationLog',
},
{//登录日志管理
path: '/System/LoginLog',
component: './System/LoginLog',
},
],
}]