liukangdong
2024-10-24 44dd2c7c73d5fead948902cad2695ae30d4620e2
screen/src/router/index.js
@@ -6,28 +6,38 @@
  routes: [
    {
      path: '/',
      component: () => import('../views/SecurityControl.vue')
      component: () => import('../views/FireFighting.vue')
    },
    {
      path: '/PlatformCall',
      path: '/PlatformCall', // 月台叫号大屏
      name: 'PlatformCall',
      component: () => import('../views/PlatformCall.vue')
    },
    {
      path: '/EnergyConsum',
      path: '/EnergyConsum', // 能耗看板 - 绿色低碳运营
      name: 'EnergyConsum',
      component: () => import('../views/EnergyConsum.vue')
    },
    {
      path: '/LogisticsControl',
      name: 'LogisticsControl',
      path: '/LogisticsEfficiency', // 物流运行调度看板- 调度能效
      name: 'LogisticsEfficiency',
      component: () => import('../views/LogisticsEfficiency.vue')
    },
    {
      path: '/SecurityControl',
      path: '/SecurityControl',  // 安防管控大屏 -
      name: 'SecurityControl',
      component: () => import('../views/SecurityControl.vue')
    },
    {
      path: '/LogisticsCenter', //库制管理看板-物流中心
      name: 'LogisticsCenter',
      component: () => import('../views/LogisticsCenter.vue')
    },
    {
      path: '/FireFighting', //消防监控
      name: 'FireFighting',
      component: () => import('../views/FireFighting.vue')
    },
  ]
})