export const menus = [ { path: '/dashboard', title: '仪表盘', icon: 'DataBoard' }, { path: '/ticket', title: '工单管理', icon: 'Tickets', children: [ { path: '/ticket/list', title: '工单列表' } ] }, { path: '/user', title: '用户管理', icon: 'User', children: [ { path: '/user/list', title: '用户列表' }, { path: '/user/group', title: '用户组管理' }, { path: '/user/admin-group', title: '管理员组管理' } ] }, { path: '/product', title: '商品管理', icon: 'Goods', children: [ { path: '/product/manage', 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: '/activity', title: '活动管理', icon: 'TrophyBase', children: [ { path: '/activity/signin', title: '签到活动' }, { path: '/activity/groupbuy', title: '拼团管理' } ] }, { 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: '/acs/guacamole', title: '远程桌面网关管理' }, { path: '/audit', title: '站点审计', children: [ { path: '/audit/all', title: '所有站点' }, { path: '/audit/violation', title: '违规站点' } ] }, { path: '/setting', title: '全局设置管理', children: [ { path: '/setting/global', title: '全局设置' } ] } ] }, { path: '/system', title: '系统管理', icon: 'Setting', children: [ { 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-manage', title: '配置管理' } ] } ]