nav.ts 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /**
  2. * @description 导航常量
  3. */
  4. import { HOME_PAGE } from '@/router/full-routes';
  5. // 首页导航列表 根据后端返回权限控制(首页永远存在)
  6. export const NAV_LIST = [
  7. {
  8. ...HOME_PAGE,
  9. },
  10. {
  11. name: 'InstituteSafety',
  12. path: '/institute-safety',
  13. meta: {
  14. title: '院区安全态势',
  15. },
  16. },
  17. {
  18. name: '生产安全',
  19. path: '/work-safety',
  20. meta: {
  21. title: '生产安全',
  22. },
  23. },
  24. {
  25. name: 'Traffic',
  26. path: '/traffic',
  27. meta: {
  28. title: '交通安全',
  29. },
  30. },
  31. {
  32. name: 'SecurityConfidentiality',
  33. path: '/security-confidentiality',
  34. meta: {
  35. title: '保卫保密',
  36. },
  37. },
  38. {
  39. name: 'DisasterPrevention',
  40. path: '/disaster-prevention',
  41. meta: {
  42. title: '灾害防范',
  43. },
  44. },
  45. {
  46. name: 'EmergencyManagement',
  47. path: '/emergency-management',
  48. meta: {
  49. title: '应急管理',
  50. },
  51. },
  52. {
  53. name: 'Platform',
  54. path: '/platform',
  55. meta: {
  56. title: '平台管理',
  57. },
  58. },
  59. ];