From bf2450a6b85a37dd5e4ff895caf88eb82ee21263 Mon Sep 17 00:00:00 2001 From: mengxiaolong Date: Tue, 22 Dec 2020 10:23:06 +0800 Subject: [PATCH] =?UTF-8?q?=E9=93=B6=E8=A1=8C=E5=8D=A1=E8=B4=A6=E6=88=B7?= =?UTF-8?q?=E7=9C=81=E5=B8=82=E4=BF=A1=E6=81=AF=E5=9B=9E=E6=98=BE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ebiz/sale/AccountInformation.vue | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/views/ebiz/sale/AccountInformation.vue b/src/views/ebiz/sale/AccountInformation.vue index bdd9b64f3..2a5fb1d47 100644 --- a/src/views/ebiz/sale/AccountInformation.vue +++ b/src/views/ebiz/sale/AccountInformation.vue @@ -201,6 +201,11 @@ export default { } }, methods: { + showbackBankAddressStr(provinceCode, cityCode) { + let provinces = areaList.province_list + let cities = areaList.city_list + this.areaStr = `${provinces[provinceCode]}-${cities[cityCode]}` + }, areaSelect() { this.isAreaListShow = true this.$refs['areaSelect'].reset('450000') @@ -525,6 +530,8 @@ export default { this.bankId = res.orderDTO.orderAccountDTO.cardBookCode this.accBankProvince = res.orderDTO.orderAccountDTO.accBankProvince this.accBankCity = res.orderDTO.orderAccountDTO.accBankCity + // 回显银行卡省市信息 + this.showbackBankAddressStr(this.accBankProvince, this.accBankCity) localStorage.setItem('isAutoPay', res.orderDTO.orderAccountDTO.isAutoPay) localStorage.setItem('isAutoRenewal', res.orderDTO.orderAccountDTO.isAutoRenewal) localStorage.setItem('isRenew', res.orderDTO.orderAccountDTO.isRenew)