app.js 434 B

12345678910111213141516171819202122232425
  1. module.exports = [
  2. {
  3. title: '应用管理',
  4. path: '/xms',
  5. icon: 'column',
  6. module: '@app',
  7. children: [
  8. {
  9. title: '应用信息',
  10. path: '/xms/app',
  11. icon: 'bill',
  12. },
  13. {
  14. title: '资源管理',
  15. path: '/xms/resources',
  16. icon: 'tags',
  17. },
  18. {
  19. title: '角色管理',
  20. path: '/xms/roles',
  21. icon: 'tag',
  22. },
  23. ],
  24. },
  25. ];