longyvfengyun
2023-12-20 e20bc2892a994f220a176336c6b6f14eeb3e1937
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
export default [
  {
    path: "/login",
    name: "login",
    meta: {},
    component: () => import('../views/login.vue')
  },
  {
    path: '/',
    name: 'mainLayout',
    component: () => import('../views/mainLayout/index.vue'),
    redirect: '/home',
    meta: {},
    children: [
      {
        path: "home",
        name: "首页",
        meta: {
          isTechPage: true,
          title: "动力电池安全检测大数据分析平台"
        },
        component: () => import("../views/home.vue"),
      },
      {
        path: "videoShow",
        name: "视频监控",
        meta: {
          isTechPage: true,
          title: "实时视频监控"
        },
        component: () => import("../views/videoShow.vue"),
      },
      {
        path: "battShow",
        name: "电池测试原始数据",
        meta: {
          isTechPage: true,
          title: "电池测试原始数据"
        },
        component: ()=>import("../views/battShow.vue"),
      },
      {
        path: "user/drivingAnalysis",
        name: "驾驶行为分析图",
        meta: {
          isTechPage: true,
          title: "驾驶行为分析系统"
        },
        component: () => import("../views/user/drivingAnalysis.vue"),
      },
      {
        path: "user/boxList",
        name: "盒子列表",
        meta: {},
        component: () => import("../views/user/boxList.vue"),
      },
      {
        path: "user/videoList",
        name: "摄像头列表",
        meta: {},
        component: () => import("../views/user/videoList.vue"),
      },
      {
        path: "analysis/lof",
        name: "基于局部离群因子LOF的电池故障检测算法",
        meta: {
          isTechPage: true,
          title: "基于局部离群因子LOF的电池故障检测算法"
        },
        component: ()=>import("../views/analysis/lofAnalysis.vue")
      },
      {
        path: "analysis/fusion",
        name: "基于融合FEF和DTW的电池故障检测算法",
        meta: {
          isTechPage: true,
          title: "基于融合FEF和DTW的电池故障检测算法"
        },
        component: ()=>import("../views/analysis/fusionAnalysis.vue")
      },
      {
        path: "analysis/hd",
        name: "基于Hausdorff距离的电池故障检测算法",
        meta: {
          isTechPage: true,
          title: "基于Hausdorff距离的电池故障检测算法"
        },
        component: ()=>import("../views/analysis/hdAnalysis.vue")
      },
      {
        path: "analysis/fh",
        name: "融合K-means和Fréchet的电池故障检测算法",
        meta: {
          isTechPage: true,
          title: "融合K-means和Fréchet的电池故障检测算法"
        },
        component: ()=>import("../views/analysis/fhAnalysis.vue")
      },
    ]
  }
]