menu-config.js 593 B

12345678910111213141516171819202122232425262728293031323334353637
  1. export const devMenu = [
  2. {
  3. path: '/test',
  4. name: '测试',
  5. platform: 'admin',
  6. children: [
  7. {
  8. path: '/list',
  9. name: '测试列表',
  10. },
  11. {
  12. path: '/detail',
  13. name: '测试详情',
  14. },
  15. ],
  16. },
  17. {
  18. path: '/doctor',
  19. name: '医生管理',
  20. platform: 'doctor',
  21. children: [
  22. {
  23. path: '/list',
  24. name: '医生列表',
  25. },
  26. // {
  27. // path: '/detail',
  28. // name: '测试详情',
  29. // },
  30. {
  31. path: '/nurse',
  32. name: '护士列表',
  33. },
  34. ],
  35. },
  36. ];