home.js 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. // let isProd = process.env.NODE_ENV === 'production';
  2. export default [
  3. {
  4. path: '/security',
  5. component: () =>
  6. import ('../views/security-plan.vue'),
  7. meta: {
  8. title: '进博会消防安保平台火灾防控'
  9. }
  10. },
  11. {
  12. path: '/',
  13. name: 'Home',
  14. component: () =>
  15. import ('../views/enforcement-dynamic.vue'),
  16. meta: {
  17. title: '消防执法动态'
  18. }
  19. },
  20. {
  21. path: '/enforcement-dynamic',
  22. component: () =>
  23. import ('../views/enforcement-dynamic.vue'),
  24. meta: {
  25. title: '消防执法动态'
  26. }
  27. },
  28. {
  29. path: '/comprehensive-disposal',
  30. component: () =>
  31. import ('../views/comprehensive-disposal.vue'),
  32. meta: {
  33. title: '警情综合处置'
  34. }
  35. },
  36. {
  37. path: '/fire-data-analysis',
  38. component: () =>
  39. import ('../views/fire-data-analysis.vue'),
  40. meta: {
  41. title: '火灾数据分析'
  42. }
  43. }, {
  44. path: '/rescue-station',
  45. component: () =>
  46. import ('../views/rescue-station.vue'),
  47. meta: {
  48. title: '消防救援站点'
  49. }
  50. }, {
  51. path: '/water-sources',
  52. component: () =>
  53. import ('../views/water-sources.vue'),
  54. meta: {
  55. title: '消防水源情况'
  56. }
  57. }, {
  58. path: '/self-management',
  59. component: () =>
  60. import ('../views/self-management.vue'),
  61. meta: {
  62. title: '企业自主管理'
  63. }
  64. }, {
  65. path: '/security-plan',
  66. component: () =>
  67. import ('../views/security-plan.vue'),
  68. meta: {
  69. title: '大型安保预案'
  70. }
  71. },
  72. {
  73. path: '/fire-signs',
  74. component: () =>
  75. import ('../views/fire-signs.vue'),
  76. meta: {
  77. title: '城市消防体征'
  78. }
  79. },
  80. ];