@@ -234,7 +234,7 @@ export default {
}
// 非终止转账
- if (this.transfer.mode !== 2) {
+ if (this.transfer.mode === 3) {
// 校验开户行
if (!this.transfer.bank) {
return this.$toast('请选择开户银行')
@@ -412,7 +412,7 @@ export default {
return this.$toast('请先选择处理方式')
}
// 非终止转账
- if (this.transfer.mode !== 2) {
+ if (this.transfer.mode === 3) {
// 校验开户行
if (!this.transfer.bank) {
return this.$toast('请选择开户银行')
@@ -484,7 +484,7 @@ export default {
problemData.bankName = this.transfer.bank
problemData.bankNo = this.transfer.card
// 选择非终止转账时上传银行卡照片
- if (this.transfer.mode !== 2) {
+ if (this.transfer.mode === 3) {
problemData.list.push(this.transfer.cardUploadResult)
}
}