mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-18 20:16:45 +08:00
转账不成功问题件逻辑修改
This commit is contained in:
@@ -41,7 +41,7 @@
|
|||||||
</template>
|
</template>
|
||||||
</van-field>
|
</van-field>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="this.transfer.mode !== 2">
|
<div v-if="this.transfer.mode === 3 || this.transfer.mode === ''">
|
||||||
<div class="item">
|
<div class="item">
|
||||||
<van-field v-model="transfer.bank" @click="getBankListItem" label-class="labels" readonly label="开户银行" placeholder="请选择"> </van-field>
|
<van-field v-model="transfer.bank" @click="getBankListItem" label-class="labels" readonly label="开户银行" placeholder="请选择"> </van-field>
|
||||||
</div>
|
</div>
|
||||||
@@ -234,7 +234,7 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 非终止转账
|
// 非终止转账
|
||||||
if (this.transfer.mode !== 2) {
|
if (this.transfer.mode === 3) {
|
||||||
// 校验开户行
|
// 校验开户行
|
||||||
if (!this.transfer.bank) {
|
if (!this.transfer.bank) {
|
||||||
return this.$toast('请选择开户银行')
|
return this.$toast('请选择开户银行')
|
||||||
@@ -412,7 +412,7 @@ export default {
|
|||||||
return this.$toast('请先选择处理方式')
|
return this.$toast('请先选择处理方式')
|
||||||
}
|
}
|
||||||
// 非终止转账
|
// 非终止转账
|
||||||
if (this.transfer.mode !== 2) {
|
if (this.transfer.mode === 3) {
|
||||||
// 校验开户行
|
// 校验开户行
|
||||||
if (!this.transfer.bank) {
|
if (!this.transfer.bank) {
|
||||||
return this.$toast('请选择开户银行')
|
return this.$toast('请选择开户银行')
|
||||||
@@ -484,7 +484,7 @@ export default {
|
|||||||
problemData.bankName = this.transfer.bank
|
problemData.bankName = this.transfer.bank
|
||||||
problemData.bankNo = this.transfer.card
|
problemData.bankNo = this.transfer.card
|
||||||
// 选择非终止转账时上传银行卡照片
|
// 选择非终止转账时上传银行卡照片
|
||||||
if (this.transfer.mode !== 2) {
|
if (this.transfer.mode === 3) {
|
||||||
problemData.list.push(this.transfer.cardUploadResult)
|
problemData.list.push(this.transfer.cardUploadResult)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user