wwf
17 小时以前 4e6f18dfa08e2f2f4f02aaa1b8e8e51852b7a9a1
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
const router = [
  {
    path: '/h5',
    name: 'h5页面',
    component: () => import('@/views/h5/index.vue'),
    children: [
      {
        path: 'verify',
        name: '考点核验',
        component: () => import('@/views/h5/verify/index.vue'),
      },
      {
        path: 'verForm',
        name: '提交考点核验',
        component: () => import('@/views/h5/verify/form.vue'),
      },
      {
        path: 'noVerAccess',
        name: '核验无权限',
        component: () => import('@/views/h5/verify/noAccess.vue'),
      },
      {
        path: 'login',
        name: '身份验证登录',
        component: () => import('@/views/h5/login/index.vue'),
      },
      {
        path: 'signup',
        name: '签到',
        component: () => import('@/views/h5/signup/index.vue'),
      },
      {
        path: 'face',
        name: '人脸验证',
        component: () => import('@/views/h5/faceAuth/index.vue'),
      },
    ],
  },
]
export default router