|
@@ -254,13 +254,18 @@
|
|
|
this.strCapture = STRCAPTURE + '?' + new Date().getTime()
|
|
|
},
|
|
|
funSubmit () {
|
|
|
+ const postData = {
|
|
|
+ orderProductId: this.orderProductId,
|
|
|
+ ...this.postData
|
|
|
+ }
|
|
|
+ delete postData.capture
|
|
|
if (!this.verifyData()) {
|
|
|
Toast({
|
|
|
message: this.arrErrorList[0],
|
|
|
forbidClick: true
|
|
|
})
|
|
|
}
|
|
|
- createOrder().then(() => {
|
|
|
+ createOrder(postData).then(() => {
|
|
|
this.$router.replace({ path: '/loan/detail' })
|
|
|
}).catch(err => {
|
|
|
Toast(err)
|