ann0707
2018-08-16 c9bc8ec61cff4076132f6396d99d383a2cdf5a03
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
/**
 * 作者:hzq
 * 文件说明:包你贷路由
 * Created by hzq on 2018/6/15
 *
 */
 
export default [
//    ===========包你贷-【授信】页面路由 start===========
    {
        path: '/bnd/Credit/listgeren',//个人基本信息
        name: 'bnd/Credit/listgeren',
        component: function (resolve) {
            require(['../views/bnd/credit/listgeren'], resolve);
        }
    },
    {
        path: '/bnd/Credit/companyInfo',//公司信息
        name: 'bnd/Credit/companyInfo',
        component: function (resolve) {
            require(['../views/bnd/credit/companyInfo'], resolve);
        }
    },
    {
        path: '/bnd/Credit/contactInfo',//联系人信息
        name: 'bnd/Credit/contactInfo',
        component: function (resolve) {
            require(['../views/bnd/credit/contactInfo'], resolve);
        }
    },
    {
        path: '/bnd/Credit/passwordInfo',//设置交易密码
        name: 'bnd/Credit/passwordInfo',
        component: function (resolve) {
            require(['../views/bnd/credit/passwordInfo'], resolve);
        }
    },
    {
        path: '/bnd/Credit/bankInfo',//绑定银行卡
        name: 'bnd/Credit/bankInfo',
        component: function (resolve) {
            require(['../views/bnd/credit/bankInfo'], resolve);
        }
    },
    {
        path: '/bnd/Credit/bindingCode',//绑定银行卡验证码
        name: 'bnd/Credit/bindingCode',
        component: function (resolve) {
            require(['../views/bnd/credit/bindingCode'], resolve);
        }
    },
    {
        path: '/bnd/Credit/idPicture',//身份证照片上传
        name: 'bnd/Credit/idPicture',
        component: function (resolve) {
            require(['../views/bnd/credit/idPicture'], resolve);
        }
    },
    {
        path: '/bnd/Credit/pictureUp',//身份证照片上传成功
        name: 'bnd/Credit/pictureUp',
        component: function (resolve) {
            require(['../views/bnd/credit/pictureUp'], resolve);
        }
    },
    {
        path: '/bnd/Credit/authorization',//芝麻授权
        name: 'bnd/Credit/authorization',
        component: function (resolve) {
            require(['../views/bnd/credit/authorization'], resolve);
        }
    },
    {
        path: '/bnd/Credit/juxinliAuthorization',//聚立信授权
        name: 'bnd/Credit/juxinliAuthorization',
        component: function (resolve) {
            require(['../views/bnd/credit/juxinliAuthorization'], resolve);
        }
    },
    {
        path: '/bnd/Credit/infoOk',//信息确认
        name: 'bnd/Credit/infoOk',
        component: function (resolve) {
            require(['../views/bnd/credit/infoOk'], resolve);
        }
    },
    {
        path: '/bnd/Credit/waitForHandle',//等待银行卡绑定处理
        name: 'bnd/Credit/waitForHandle',
        component: function (resolve) {
            require(['../views/bnd/credit/waitForHandle'], resolve);
        }
    },
    {
        path: '/bnd/Credit/messageCode',//短信验证
        name: 'bnd/Credit/messageCode',
        component: function (resolve) {
            require(['../views/bnd/credit/messageCode'], resolve);
        }
    },
    {
        path: '/bnd/Credit/subSuss',//提交成功等待处理
        name: 'bnd/Credit/subSuss',
        component: function (resolve) {
            require(['../views/bnd/credit/subSuss'], resolve);
        }
    },
    {
        path: '/bnd/credit/juxinli',//聚信立
        name: 'bnd/credit/juxinli',
        component: function (resolve) {
            require(['../views/bnd/credit/juxinli'], resolve);
        }
    },
    {
        path: '/bnd/credit/sesame',//芝麻
        name: 'bnd/credit/sesame',
        component: function (resolve) {
            require(['../views/bnd/credit/sesame'], resolve);
        }
    },
    {
        path: '/bnd/credit/personalChanges',//个人基本信息修改
        name: 'bnd/credit/personalChanges',
        component: function (resolve) {
            require(['../views/bnd/credit/personalChanges'], resolve);
        }
    },
    {
        path: '/bnd/credit/companyModification',//公司信息修改
        name: 'bnd/credit/companyModification',
        component: function (resolve) {
            require(['../views/bnd/credit/companyModification'], resolve);
        }
    }
    ,
//    ===========包你贷-【授信】页面路由 end===========
//    ===========包你贷-【贷款】页面路由 start===========
    {
        path: '/bnd/loan/quota',//贷款查询
        name: 'bnd/loan/quota',
        component: function (resolve) {
            require(['../views/bnd/loan/quota'], resolve);
        }
    },
    {
        path: '/bnd/loan/loanInfo',//借款
        name: 'bnd/loan/loanInfo',
        component: function (resolve) {
            require(['../views/bnd/loan/loanInfo'], resolve);
        }
    },
    {
        path: '/bnd/loan/quotaInfo',//贷款信息确认
        name: 'bnd/loan/quotaInfo',
        component: function (resolve) {
            require(['../views/bnd/loan/quotaInfo'], resolve);
        }
    },
    {
        path: '/bnd/loan/subSuccess',//提交成功
        name: 'bnd/loan/subSuccess',
        component: function (resolve) {
            require(['../views/bnd/loan/subSuccess'], resolve);
        }
    },
    {
        path: '/bnd/loan/modifyPasswrod',//修改交易密码
        name: 'bnd/loan/modifyPasswrod',
        component: function (resolve) {
            require(['../views/bnd/loan/modifyPasswrod'], resolve);
        }
    },
    {
        path: '/bnd/loan/modifyPasswrodSuccess',//修改交易密码成功页面
        name: 'bnd/loan/modifyPasswrodSuccess',
        component: function (resolve) {
            require(['../views/bnd/loan/modifyPasswrodSuccess'], resolve);
        }
    },
    {
        path: '/bnd/loan/loanMessage',//短信验证
        name: 'bnd/loan/loanMessage',
        component: function (resolve) {
            require(['../views/bnd/loan/loanMessage'], resolve);
        }
    },
    {
        path: '/bnd/loan/resetPwd',//重置交易密码
        name: 'bnd/loan/resetPwd',
        component: function (resolve) {
            require(['../views/bnd/loan/resetPwd'], resolve);
        }
    },
    {
        path: '/bnd/loan/resetSuccess',//重置交易密码成功页面
        name: 'bnd/loan/resetSuccess',
        component: function (resolve) {
            require(['../views/bnd/loan/resetSuccess'], resolve);
        }
    },
//    ===========包你贷-【贷款】页面路由 end===========
//    ===========包你贷-【还款】页面路由 start===========
    {
        path: '/bnd/repayMent/loanDetails',//贷款查询页面,所有贷款账单显示
        name: 'bnd/repayMent/loanDetails',
        component: function (resolve) {
            require(['../views/bnd/repayMent/loanDetails'], resolve);
        }
    },
    {
        path: '/bnd/repayMent/billDetails',//账单详情页面
        name: 'bnd/repayMent/billDetails',
        component: function (resolve) {
            require(['../views/bnd/repayMent/billDetails'], resolve);
        }
    },
    {
        path: '/bnd/repayMent/repayPlan',//还款计划页面
        name: 'bnd/repayMent/repayPlan',
        component: function (resolve) {
            require(['../views/bnd/repayMent/repayPlan'], resolve);
        }
    },
    {
        path: '/bnd/repayMent/advanceSettle',//提前结清页面
        name: 'bnd/repayMent/advanceSettle',
        component: function (resolve) {
            require(['../views/bnd/repayMent/advanceSettle'], resolve);
        }
    },
    {
        path: '/bnd/repayMent/activeRepayment',//主动还款页面
        name: 'bnd/repayMent/activeRepayment',
        component: function (resolve) {
            require(['../views/bnd/repayMent/activeRepayment'], resolve);
        }
    },
    {
        path: '/bnd/repayMent/subSuccess',//提交成功
        name: 'bnd/repayMent/subSuccess',
        component: function (resolve) {
            require(['../views/bnd/repayMent/subSuccess'], resolve);
        }
    }
//    ===========包你贷-【还款】页面路由 end===========
];