|
@@ -106,6 +106,36 @@ const routesGuest = [
|
|
|
},
|
|
|
]
|
|
|
},
|
|
|
+ //扫码通行
|
|
|
+ {
|
|
|
+ path: 'current',
|
|
|
+ component: () => import('../views/Layout.vue'),
|
|
|
+ children: [
|
|
|
+ //扫码通行
|
|
|
+ {
|
|
|
+ path: 'info',
|
|
|
+ name: 'GuestCurrentInfo',
|
|
|
+ component: () => import('../views/Guest/Current/Info.vue'),
|
|
|
+ meta: {
|
|
|
+ requireAuth: false,
|
|
|
+ role: [],
|
|
|
+ title: '访问邀请函',
|
|
|
+ }
|
|
|
+ },
|
|
|
+
|
|
|
+ //访客身份信息(注册)
|
|
|
+ {
|
|
|
+ path: 'add',
|
|
|
+ name: 'GuestCurrentAdd',
|
|
|
+ component: () => import('../views/Guest/Current/Add.vue'),
|
|
|
+ meta: {
|
|
|
+ requireAuth: false,
|
|
|
+ role: [],
|
|
|
+ title: '访客身份信息',
|
|
|
+ }
|
|
|
+ },
|
|
|
+ ]
|
|
|
+ },
|
|
|
],
|
|
|
}
|
|
|
]
|