story#7189,回程车小程序司机端-迁移认证页面
This commit is contained in:
43
src/router/authentication-router.js
Normal file
43
src/router/authentication-router.js
Normal file
@ -0,0 +1,43 @@
|
||||
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
|
||||
@ -5,6 +5,7 @@ import kpiRouter from './kpi-router'
|
||||
import invoiceRouter from "@/router/invoice-router";
|
||||
import secondHandRouter from "@/router/second-hand-router";
|
||||
import reportRouter from "@/router/report-router"
|
||||
import authenticationRouter from "@/router/authentication-router"
|
||||
const routes = [
|
||||
{
|
||||
path: '/',
|
||||
@ -294,7 +295,8 @@ const routes = [
|
||||
...kpiRouter,
|
||||
...invoiceRouter,
|
||||
...secondHandRouter,
|
||||
...reportRouter
|
||||
...reportRouter,
|
||||
...authenticationRouter
|
||||
]
|
||||
|
||||
const router = new VueRouter({
|
||||
|
||||
Reference in New Issue
Block a user