From 19d6946df242d0c1edb0c104b2f1acfac7fcd7fa Mon Sep 17 00:00:00 2001 From: mengxiaolong Date: Tue, 8 Sep 2020 17:14:55 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BD=AC=E8=B4=A6=E4=B8=8D=E6=88=90=E5=8A=9F?= =?UTF-8?q?=E9=97=AE=E9=A2=98=E4=BB=B6=E9=80=BB=E8=BE=91=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ebiz/questions/QuestionsDetail.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/views/ebiz/questions/QuestionsDetail.vue b/src/views/ebiz/questions/QuestionsDetail.vue index d917d71b8..058372c95 100644 --- a/src/views/ebiz/questions/QuestionsDetail.vue +++ b/src/views/ebiz/questions/QuestionsDetail.vue @@ -41,7 +41,7 @@ -
+
@@ -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) } }