吉安感知网项目-前端
shuishen
2026-01-07 fd6bf84d87d1773dcb53a47d6fafdd39dfd28e13
applications/drone-command/src/router/views/index.js
@@ -3,18 +3,17 @@
export default [
  {
    path: '/wel',
    component: () =>
      Store.getters.isMacOs ? import('@/mac/index.vue') : import('@/page/index/index.vue'),
    redirect: '/wel/index',
    path: '/dataCockpit',
    component: Layout,
    redirect: '/dataCockpit/index',
    children: [
      {
        path: 'index',
        name: '个人工作台',
        name: '数据驾驶舱',
        meta: {
          i18n: 'dashboard',
        },
        component: () => import(/* webpackChunkName: "views" */ '@/views/wel/index.vue'),
        component: () => import(/* webpackChunkName: "views" */ '@/views/dataCockpit/index.vue'),
      },
    ],
  },