安琪酵母(西藏)益生菌信息采集中心智能实验室
longyvfengyun
2023-06-16 55f55103fed83d2584012e4308c1c31779574eb0
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
export default [
  {
    path: "/login",
    name: "login",
    component: () => import('../views/login/index.vue')
  },
  {
    path: "/",
    name: "mainLayout",
    component: () => import('../views/mainLayout/index.vue'),
    redirect: '/home',
    children: [
      {
        path: "home",
        name: "home",
        component: () => import("../views/home/index.vue"),
      },
      {
        path: "accessControl",
        name: 'accessControl',
        component: () => import("../views/accessControl/accessControl.vue"),
      },
      {
        path: "video",
        name: 'video',
        component: () => import("../views/video/video.vue"),
      },
      {
        path: "airConditioning",
        name: 'airConditioning',
        component: () => import("../views/airConditioning/airConditioning.vue"),
      },
      {
        path: "userManagement",
        name: 'userManagement',
        component: () => import("../views/userManagement/userManagement.vue"),
      },
      {
        path: '/:pathMatch(.*)*',
        name: "",
        component: () => import('../views/404.vue')
      },
    ]
  },
  {
    path: '/:pathMatch(.*)*',
    name: "",
    component: () => import('../views/404.vue')
  },
];