44 lines
1.1 KiB
JavaScript
44 lines
1.1 KiB
JavaScript
const authenticationRouter = [
|
|
{
|
|
path: '/auditList',
|
|
name: 'auditList',
|
|
component: () => import('@/views/rvDriverAuthentication/auditList.vue'),
|
|
meta:{
|
|
title: '小板运输司机认证',
|
|
}
|
|
},
|
|
{
|
|
path: '/personAudit',
|
|
name: 'personAudit',
|
|
component: () => import('@/views/rvDriverAuthentication/personAudit.vue'),
|
|
meta:{
|
|
title: '实名认证',
|
|
}
|
|
},
|
|
{
|
|
path: '/carAudit',
|
|
name: 'carAudit',
|
|
component: () => import('@/views/rvDriverAuthentication/carAudit.vue'),
|
|
meta:{
|
|
title: '驾驶证认证',
|
|
}
|
|
},
|
|
{
|
|
path: '/carInfoAudit',
|
|
name: 'carInfoAudit',
|
|
component: () => import('@/views/rvDriverAuthentication/carInfoAudit.vue'),
|
|
meta:{
|
|
title: '车辆信息认证',
|
|
}
|
|
},
|
|
{
|
|
path: '/bankInfo',
|
|
name: 'bankInfo',
|
|
component: () => import('@/views/rvDriverAuthentication/bankInfo.vue'),
|
|
meta:{
|
|
title: '银行卡信息认证',
|
|
}
|
|
},
|
|
]
|
|
export default authenticationRouter
|