后台管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

60 lines
1.5 KiB

2 years ago
// 菜单栏生成
let menusdata = [
2 years ago
// {
// id: '0',
// path: '/filemange',
// meta: { title: '文件管理', icon: 'dashboard' },
// children: [
// {
// path: '/subfile',
// meta: { title: 'Menu1-1' }
// },
// {
// path: '/subfile',
// meta: { title: 'Menu1-2' },
// children: [
// {
// path: '/subfile',
// meta: { title: 'Menu1-2-1' }
// },
// {
// path: '/subfile',
// meta: { title: 'Menu1-2-2' }
// }
// ]
// }
// ]
// },
2 years ago
{
id: '0',
path: '/filemange',
meta: { title: '文件管理', icon: 'dashboard' },
},
{
path: '/usermange',
meta: { title: '用户管理', icon: 'dashboard' }
},
{
path: '/systme',
meta: { title: '系统管理', icon: 'dashboard' },
children: [
{
path: 'changepass',
meta: { title: '修改密码', icon: 'table' }
},
{
path: 'userrelated',
meta: { title: '用户相关', icon: 'tree' }
},
{
path: 'userrelated2',
meta: { title: '皮肤更换', icon: 'tree' }
}
]
},
]
export default menusdata