feat:添加admin相关接口

This commit is contained in:
2025-11-13 15:05:54 +08:00
parent 11cb40c86a
commit 067e0539ba
58 changed files with 18736 additions and 273 deletions
+142 -11
View File
@@ -8,7 +8,115 @@ export const menus = [
path : '/ticket',
title: '工单处理',
icon: 'DataBoard'
},
{
path:'/user',
title: '用户管理',
icon: 'User',
children: [
{
path: '/user/list',
title: '用户列表'
},
{
path: '/user/balance',
title: '用户余额管理'
},
{
path: '/user/group',
title: '用户组管理'
},
{
path: '/user/admin-group',
title: '管理员组管理'
}
]
},
{
path: '/product',
title: '商品管理',
icon: 'Goods',
children: [
{
path: '/product/list',
title: '商品列表'
},
{
path: '/product/group',
title: '商品分组'
},
{
path: '/product/parameter',
title: '商品参数'
}
]
},
{
path: '/order',
title: '订单管理',
icon: 'Document',
children: [
{
path: '/order/list',
title: '订单列表'
}
]
},
{
path: '/marketing',
title: '优惠营销',
icon: 'Present',
children: [
{
path: '/marketing/discount',
title: '优惠码管理'
},
{
path: '/marketing/voucher',
title: '代金券管理'
},
{
path: '/marketing/user-distribution',
title: '用户分发管理'
},
{
id: 'discount-goods',
title: '商品关联管理',
path: '/marketing/discount-goods',
badge: 'NEW'
},
{
id: 'discount-users',
title: '用户关联管理',
path: '/marketing/discount-users',
badge: 'NEW'
},
{
id: 'user-info',
title: '用户信息管理',
path: '/marketing/user-info',
badge: 'NEW'
},
{
id: 'user-history',
title: '用户使用记录管理',
path: '/marketing/user-history',
badge: 'NEW'
}
]
},
{
path: '/activity',
title: '活动管理',
icon: 'TrophyBase',
children: [
{
path: '/activity/signin',
title: '签到活动'
}
]
},
{
path: '/acs',
@@ -34,24 +142,24 @@ export const menus = [
]
},
{
path: '/acs/nodes', title: '节点管理'
path: '/acs/nodes',
title: '节点管理'
},
{
path: '/acs/guacamole',
title: '远程桌面网关管理',
icon: 'Monitor'
},{
title: '远程桌面网关管理'
},
{
path: '/audit',
title: '站点审计',
icon: 'Monitor',
children: [
{ path: '/audit/all', title: '所有站点' },
{ path: '/audit/violation', title: '违规站点' }
]
},{
},
{
path:'/setting',
title:'全局设置管理',
icon:'Setting',
children:[
{path:'/setting/global',title:'全局设置'}
]
@@ -63,9 +171,32 @@ export const menus = [
title: '系统管理',
icon: 'Setting',
children: [
// { path: '/system/users', title: '用户管理' },
// { path: '/system/operation-log', title: '操作日志' },
{ path: '/system/domain-whitelist', title: '域名白名单' }
{
path: '/system/permission',
title: '权限管理',
children: [
{ path: '/system/permission/route', title: '路由权限' },
{ path: '/system/permission/admin', title: '管理员权限' }
]
},
{
path: '/system/file',
title: '文件管理'
},
{
path: '/system/domain-whitelist',
title: '域名白名单'
},
{
path: '/system/setting-group',
title: '配置组管理'
},
{
path: '/system/setting-list',
title: '配置管理'
}
]
}
]