|
@@ -304,7 +304,9 @@ export default {
|
|
|
this.addrDistrictList = []
|
|
this.addrDistrictList = []
|
|
|
this.queryParam.provinceName = val ? this.addrProvinceList.find(item => item.code == this.queryParam.provinceCode).name : ''
|
|
this.queryParam.provinceName = val ? this.addrProvinceList.find(item => item.code == this.queryParam.provinceCode).name : ''
|
|
|
this.queryParam.cityCode = undefined
|
|
this.queryParam.cityCode = undefined
|
|
|
|
|
+ this.queryParam.cityName = ''
|
|
|
this.queryParam.districtCode = undefined
|
|
this.queryParam.districtCode = undefined
|
|
|
|
|
+ this.queryParam.districtName = ''
|
|
|
this.getCityListRequest(val)
|
|
this.getCityListRequest(val)
|
|
|
},
|
|
},
|
|
|
getCityListRequest (val) {
|
|
getCityListRequest (val) {
|
|
@@ -323,6 +325,7 @@ export default {
|
|
|
this.addrDistrictList = []
|
|
this.addrDistrictList = []
|
|
|
this.queryParam.cityName = val ? this.addrCityList.find(item => item.code == this.queryParam.cityCode).name : ''
|
|
this.queryParam.cityName = val ? this.addrCityList.find(item => item.code == this.queryParam.cityCode).name : ''
|
|
|
this.queryParam.districtCode = undefined
|
|
this.queryParam.districtCode = undefined
|
|
|
|
|
+ this.queryParam.districtName = ''
|
|
|
this.getAreaListRequest(val)
|
|
this.getAreaListRequest(val)
|
|
|
},
|
|
},
|
|
|
getAreaListRequest (val) {
|
|
getAreaListRequest (val) {
|