gaf.js 651 B

123456789101112131415161718192021222324252627282930313233343536
  1. module.exports = [
  2. {
  3. title: '系统管理',
  4. path: '/gaf',
  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/dict',
  21. icon: 'dict',
  22. visible: 'false',
  23. },
  24. {
  25. title: '菜单管理',
  26. path: '/gaf/menu',
  27. icon: 'menu',
  28. },
  29. {
  30. title: '日志审计',
  31. path: '/gaf/log',
  32. icon: 'log',
  33. },
  34. ],
  35. },
  36. ];