he wei
2023-12-08 f182d3bafb07fe93a4109742cb3553b795c6c919
src/router/routes.js
@@ -86,6 +86,41 @@
    ]
  },
  {
    path: "/power-cabinet-hisalarm",
    component: Layout,
    meta: { title: "电源柜历史告警", icon: 'dashboard'},
    name: "powerCabinetHisalarm",
    children: [
      {
        path: '',
        component: () => import('@/views/powerCabinetHisalarm'),
        name: 'powerCabinetHisalarm',
        meta: {title: '电源柜历史告警', icon: 'dashboard'}
      },
    ]
  },
  {
    path: "/test-record",
    component: Layout,
    meta: { title: "交直流断路测控记录", icon: 'dashboard'},
    name: "testRecord",
    children: [
      {
        path: '',
        component: () => import('@/views/testRecord'),
        name: 'testRecord',
        meta: {title: '交直流断路测控记录', icon: 'dashboard'}
      },
      {
        path: 'details',
        component: () => import('@/views/testRecord/details'),
        name: 'testDetails',
        hidden: true,
        meta: {title: '交直流断路测控详情', icon: 'dashboard'}
      },
    ]
  },
  {
    path: "/user",
    component: Layout,
    redirect: '/user/list',