yearning
16 小时以前 63fea2990e587837ed3dde2b9ac8f2b4ef729672
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
const router = [
  {
    path: '/h5',
    name: 'h5页面',
    component: () => import('@/views/h5/index.vue'),
    children: [
      {
        path: 'addrVer',
        name: '考点核验',
        component: () => import('@/views/h5/addrVerify/index.vue'),
      },
      {
        path: 'examineeSignIn',
        name: '考生签到',
        component: () => import('@/views/h5/signIn/index.vue'),
      },
      {
        path: 'staffSignIn',
        name: '考评员签到',
        component: () => import('@/views/h5/signIn/index.vue'),
      },
 
      {
        path: 'verForm',
        name: '提交考点核验',
        component: () => import('@/views/h5/addrVerify/form.vue'),
      },
      {
        path: 'noTask',
        name: '暂无任务',
        component: () => import('@/views/h5/noTask/index.vue'),
      },
      {
        path: 'map',
        name: '签到',
        component: () => import('@/views/h5/map/index.vue'),
      },
      {
        path: 'signInSuccess',
        name: '签到成功',
        component: () => import('@/views/h5/signIn/signInSuccess.vue')
      },
      {
        path: 'face',
        name: '人脸验证',
        component: () => import('@/views/h5/faceAuth/index.vue'),
      },
    ],
  },
  {
    path: '/h5/login',
    name: '身份验证登录',
    component: () => import('@/views/h5/login/index.vue'),
  },
  {
    path: '/h5/redirect',
    name: '重定向',
    component: () => import('@/views/h5/login/redirect.vue'),
  },
  {
    path: '/h5/bind',
    name: '绑定手机号',
    component: () => import('@/views/h5/login/bind.vue'),
  },
]
export default router