/* * @Author: 小明丶 * @Date: 2019-08-13 18:10:18 * @LastEditors: zxq * @LastEditTime: 2022-06-16 16:42:54 * @Description: */ export default [ { path:"/", name:'front-login', component:()=>import("@/views/user/front-login.vue"), meta:{ isLogin:true } }, { path:"/login", name:'login', component:()=>import("@/views/user/login.vue"), meta:{ isLogin:true } }, { path:"/agreement", name:'agreement', component:()=>import("@/views/user/agreement.vue"), meta:{ isLogin:true } }, // { // path:"/agreement2", // name:'agreement2', // component:()=>import("@/views/user/agreement2.vue"), // }, { path:"/home", name:'home', component:()=>import("@/views/home.vue"), children:[ { path:'/home/index', name:'index', component:()=>import("@/views/homeIndex/home-index.vue"), }, { path:'/home/personal', name:'personal', component:()=>import("@/views/personal/personal-center.vue") } ] }, { path:'/order-handling', name:'order-handling', component:()=>import('@/views/order-handling/order-handling.vue') },//扫码办单订单信息页面 { path:'/order-handling/upload-IDcard', name:'upload-IDcard', component:()=>import('@/views/order-handling/upload-IDcard.vue') },//进入办单第一步上传身份证 { path:'/order-handling/face-recognition', name:'face-recognition', component:()=>import('@/views/order-handling/face-recognition.vue') },//进入办单人脸识别结果页面 { path:'/order-handling/upload-userInfo', name:'upload-userinfo', component:()=>import('@/views/order-handling/upload-userInfo.vue') },//办单人信息填写页面 { path:'/order-handling/contract-signing', name:'contract-signing', component:()=>import('@/views/order-handling/contract-signing.vue') },//合同签署页面 { path:'/order-handling/bank-list', name:'bank-list', component:()=>import('@/views/order-handling/bank-list.vue') },//银行选择页面 { path:'/order-handling/image-upload', name:'image-upload', component:()=>import('@/views/order-handling/image-upload.vue') },//图像上传页面 { path:'/order-handling/approval-results', name:'approval-results', component:()=>import('@/views/order-handling/approval-results.vue') },//审批结果页面 { path:'/order/my-order', name:'my-order', component:()=>import('@/views/order/my-order.vue') }, { path:'/order/order-detail', name:'order-detail', component:()=>import('@/views/order/order-detail.vue') }, { path:'/order/repayment-plan', name:'repayment-plan', component:()=>import('@/views/order/repayment-plan.vue') }, { path:'/order/contract', name:'order-contract', component:()=>import('@/views/order/contract.vue') }, { path:'/order/settle', name:'settle', component:()=>import('@/views/order/settle.vue') }, { path:'/order/settlementEarly', name:'settle', component:()=>import('@/views/order/settlementEarly.vue') }, { path:'/order/pay-result', name:'pay-result', component:()=>import('@/views/order/pay-result.vue') }, { path:'/order/active-repayment', name:'active-repayment', component:()=>import('@/views/order/active-repayment.vue') }, { path:'/bankCard/index', name:'active-repayment', component:()=>import('@/views/bankCard/index.vue') }, ]