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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
| /*
| * @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')
| },
| ]
|
|