1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- module.exports = [
- {
- title: '系统管理',
- path: '',
- icon: 'system',
- module: '@gaf',
- children: [
- {
- title: '系统用户',
- path: '/gaf/user',
- icon: 'account',
- },
- {
- title: '用户部门',
- path: '/gaf/dept',
- icon: 'dept',
- },
- // {
- // title: '角色管理',
- // path: '/gaf/role',
- // icon: 'tag',
- // },
- {
- title: '数据字典',
- path: '/gaf/dict',
- icon: 'dict',
- },
- {
- title: '管理日志',
- path: '/gaf/log',
- icon: 'log',
- },
- {
- title: '任务管理',
- path: '/xms/task',
- icon: 'log',
- },
- {
- title: '用户同步管理',
- path: '/xms/synchro',
- icon: 'log',
- },
- {
- title: '备份恢复',
- path: '/xms/backups',
- icon: 'log',
- },
- ],
- },
- ];
|