gaf.js 935 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. module.exports = [
  2. {
  3. title: '系统管理',
  4. path: '',
  5. icon: 'system',
  6. module: '@gaf',
  7. children: [
  8. {
  9. title: '系统用户',
  10. path: '/gaf/user',
  11. icon: 'account',
  12. },
  13. {
  14. title: '用户部门',
  15. path: '/gaf/dept',
  16. icon: 'dept',
  17. },
  18. // {
  19. // title: '角色管理',
  20. // path: '/gaf/role',
  21. // icon: 'tag',
  22. // },
  23. {
  24. title: '数据字典',
  25. path: '/gaf/dict',
  26. icon: 'dict',
  27. },
  28. {
  29. title: '管理日志',
  30. path: '/gaf/log',
  31. icon: 'log',
  32. },
  33. {
  34. title: '任务管理',
  35. path: '/xms/task',
  36. icon: 'log',
  37. },
  38. {
  39. title: '用户同步管理',
  40. path: '/xms/synchro',
  41. icon: 'log',
  42. },
  43. {
  44. title: '备份恢复',
  45. path: '/xms/backups',
  46. icon: 'log',
  47. },
  48. ],
  49. },
  50. ];