123456789101112131415161718192021222324252627282930313233343536 |
- module.exports = [
- {
- title: '系统管理',
- path: '/gaf',
- icon: 'system',
- module: '@gaf',
- children: [
- {
- title: '系统用户',
- path: '/gaf/user',
- icon: 'account',
- },
- {
- title: '用户部门',
- path: '/gaf/dept',
- icon: 'dept',
- },
- {
- title: '数据字典',
- path: '/gaf/dict',
- icon: 'dict',
- visible: 'false',
- },
- {
- title: '菜单管理',
- path: '/gaf/menu',
- icon: 'menu',
- },
- {
- title: '日志审计',
- path: '/gaf/log',
- icon: 'log',
- },
- ],
- },
- ];
|