From f3923bb8e42ff981d0d80407d27ec5814bc7cbb4 Mon Sep 17 00:00:00 2001 From: mengxiaolong Date: Thu, 19 Nov 2020 21:26:37 +0800 Subject: [PATCH] =?UTF-8?q?=E8=81=94=E8=A1=8C=E5=8F=B7=E4=BD=8D=E6=95=B0?= =?UTF-8?q?=E5=A4=84=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/ebiz/agentEenter/AgentEenterBasicInfor.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/ebiz/agentEenter/AgentEenterBasicInfor.vue b/src/views/ebiz/agentEenter/AgentEenterBasicInfor.vue index 15ce83c11..f3b90a823 100644 --- a/src/views/ebiz/agentEenter/AgentEenterBasicInfor.vue +++ b/src/views/ebiz/agentEenter/AgentEenterBasicInfor.vue @@ -475,7 +475,7 @@ export default { const [province, city] = [...area] this.userInfo.bankAddress = `${province.name}-${city.name}` this.userInfo.bankProvince = province.code - this.userInfo.bankCity = city.code + this.userInfo.bankCity = city.code.slice(0, 4) this.areaName = this.userInfo.bankAddress this.areaShow = false this.queryBankJoints() @@ -483,7 +483,7 @@ export default { async queryBankJoints() { let param = { bankcode: this.code, - citycode: this.userInfo.bankCity.slice(0, 4) + citycode: this.userInfo.bankCity } this.bankJointsList.splice(0) let res = await getBankJoints(param)