wen
2 years ago
6 changed files with 143 additions and 61 deletions
@ -0,0 +1,36 @@
@@ -0,0 +1,36 @@
|
||||
|
||||
// 菜单栏生成
|
||||
let menusdata = [ |
||||
{ |
||||
id: '0', |
||||
path: '/filemange', |
||||
|
||||
meta: { title: '文件管理', icon: 'dashboard' }, |
||||
children:[] |
||||
}, |
||||
{ |
||||
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 |
Loading…
Reference in new issue