authorize.js 442 B

12345678910111213141516171819202122232425
  1. module.exports = [
  2. {
  3. title: '授权管理',
  4. path: '',
  5. icon: 'auth',
  6. module: '@auth',
  7. children: [
  8. {
  9. title: '机构授权',
  10. path: '/xms/auth/org',
  11. icon: 'dept',
  12. },
  13. {
  14. title: '群组授权',
  15. path: '/xms/auth/group',
  16. icon: 'users',
  17. },
  18. {
  19. title: '规则授权',
  20. path: '/xms/auth/rule',
  21. icon: 'users',
  22. },
  23. ],
  24. },
  25. ];