mirror of
http://112.124.100.131/GFRS/ebiz-h5.git
synced 2025-12-09 11:06:43 +08:00
联行号位数处理
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user