|
|
@ -578,8 +578,6 @@ export default { |
|
|
|
}) |
|
|
|
} else { |
|
|
|
this.formobj.payCode = '' |
|
|
|
this.formobj.receiveBankAccount = '' |
|
|
|
this.formobj.receiveBank = '' |
|
|
|
this.receiveBankAccount_list = [] |
|
|
|
} |
|
|
|
}, |
|
|
@ -656,7 +654,7 @@ export default { |
|
|
|
this.formobj.receiveCompany = row.receiveCompany |
|
|
|
this.formobj.receiveBankAccount = row.receiveBankAccount |
|
|
|
this.formobj.receiveBank = row.receiveBank |
|
|
|
this.changerRceiveCompany(this.formobj.receiveCompany) |
|
|
|
this.formobj.payCode = row.payCode |
|
|
|
this.formobj.payWayValue = row.payWayValue |
|
|
|
this.changePayWay(row.payWayValue) |
|
|
|
const aa = [] |
|
|
@ -689,8 +687,10 @@ export default { |
|
|
|
}, |
|
|
|
handlePayment() { |
|
|
|
if (this.formobj.payCode === '' || this.formobj.payCode === null || this.formobj.payCode === undefined) { |
|
|
|
this.$message({ showClose: true, type: 'error', message: '请先刷新浏览器页面后再进行操作' }) |
|
|
|
return |
|
|
|
const choose = this.receiveCompany_list.filter((item) => item.name === this.formobj.receiveCompany) |
|
|
|
if (choose !== null && choose.length > 0) { |
|
|
|
this.formobj.payCode = choose[0].payCode |
|
|
|
} |
|
|
|
} |
|
|
|
this.formobj.sids = this.sids |
|
|
|
this.submitdisabled = true |
|
|
@ -709,8 +709,10 @@ export default { |
|
|
|
}, |
|
|
|
handlePass() { |
|
|
|
if (this.formobj.payCode === '' || this.formobj.payCode === null || this.formobj.payCode === undefined) { |
|
|
|
this.$message({ showClose: true, type: 'error', message: '请先刷新浏览器页面后再进行操作' }) |
|
|
|
return |
|
|
|
const choose = this.receiveCompany_list.filter((item) => item.name === this.formobj.receiveCompany) |
|
|
|
if (choose !== null && choose.length > 0) { |
|
|
|
this.formobj.payCode = choose[0].payCode |
|
|
|
} |
|
|
|
} |
|
|
|
this.formobj.sids = this.sids |
|
|
|
this.formobj.name = window.sessionStorage.getItem('name') |
|
|
|