SYN/pc/constants/menu.ts

53 lines
1.2 KiB
TypeScript

export const NAVBAR = [
{
name: '首页',
path: '/'
},
{
name: '管理后台',
path: 'http://192.168.123.110:5173/workbench'
},
{
name: '接口文档',
path: 'http://192.168.123.111:8084/doc.html#/home'
}
]
export const SIDEBAR = [
{
module: 'personal',
hidden: true,
children: [
{
name: '个人中心',
path: '/user',
children: [
{
name: '个人信息',
path: 'info'
},
{
name: '我的收藏',
path: 'collection'
},
{
name: '新生报名',
path: 'enrollment'
}
]
},
{
name: '账户设置',
path: '/account',
children: [
{
name: '账户安全',
path: 'security'
}
]
}
]
}
]