user.js 685 B

12345678910111213141516171819202122232425262728293031323334353637
  1. module.exports = [
  2. {
  3. id: 'user',
  4. title: '用户管理',
  5. path: '/xms',
  6. icon: 'account',
  7. module: '@user',
  8. children: [
  9. {
  10. id: 'user-info',
  11. title: '用户信息',
  12. path: '/xms/user',
  13. icon: 'account',
  14. },
  15. {
  16. title: '机构管理',
  17. path: '/xms/org',
  18. icon: 'dept',
  19. },
  20. {
  21. title: '群组管理',
  22. path: '/xms/group',
  23. icon: 'users',
  24. },
  25. {
  26. title: '注册审核',
  27. path: '/xms/register',
  28. icon: 'audit',
  29. },
  30. {
  31. title: '黑名单管理',
  32. path: '/xms/blacklist',
  33. icon: 'user1',
  34. },
  35. ],
  36. },
  37. ];