This commit is contained in:
2025-07-15 18:02:29 +08:00
parent 2038ddc617
commit d636050aac
65 changed files with 17885 additions and 103 deletions
+49
View File
@@ -0,0 +1,49 @@
export const menus = [
{
path: '/dashboard',
title: '仪表盘',
icon: 'DataBoard'
},
{
path : '/ticket',
title: '工单处理',
icon: 'DataBoard'
},
{
path: '/acs',
title: 'ACS管理',
icon: 'Monitor',
children: [
{
path: '/acs/messages',
title: '消息管理',
children: [
{ path: '/acs/messages/announcements', title: '官方公告' },
{ path: '/acs/messages/policies', title: '官方政策' },
{ path: '/acs/messages/news', title: '新闻咨询' }
]
},
{
path: '/acs/images',
title: '镜像管理',
children: [
{ path: '/acs/images/vm', title: '虚拟机镜像' },
{ path: '/acs/images/container', title: '容器镜像' },
{ path: '/acs/images/categories', title: '镜像分类' }
]
},
{ path: '/acs/nodes', title: '节点管理' }
]
},
{
path: '/system',
title: '系统管理',
icon: 'Setting',
children: [
// { path: '/system/users', title: '用户管理' },
// { path: '/system/operation-log', title: '操作日志' },
{ path: '/system/domain-whitelist', title: '域名白名单' }
]
}
]