|
@@ -568,7 +568,6 @@ export default {
|
|
|
this.addrDistrictList = []
|
|
|
this.form.citySn = undefined
|
|
|
this.form.districtSn = undefined
|
|
|
- this.form.address = ''
|
|
|
if (val) {
|
|
|
this.getArea('city', val, 0)
|
|
|
this.form.provinceName = this.addrProvinceList.find(item => item.areaSn == val).name
|
|
@@ -580,7 +579,6 @@ export default {
|
|
|
getAreaList (val) {
|
|
|
this.addrDistrictList = []
|
|
|
this.form.districtSn = undefined
|
|
|
- this.form.address = ''
|
|
|
if (val) {
|
|
|
this.getArea('district', val, 0)
|
|
|
this.form.cityName = this.addrCityList.find(item => item.areaSn == val).name
|
|
@@ -590,7 +588,6 @@ export default {
|
|
|
},
|
|
|
// 区县变更
|
|
|
areaCharged (val) {
|
|
|
- this.form.address = ''
|
|
|
if (val) {
|
|
|
this.form.districtName = this.addrDistrictList.find(item => item.areaSn == val).name
|
|
|
} else {
|
|
@@ -603,7 +600,6 @@ export default {
|
|
|
this.addrDistrictList1 = []
|
|
|
this.form.receiveCitySn = undefined
|
|
|
this.form.receiveDistrictSn = undefined
|
|
|
- this.form.receiveAddress = ''
|
|
|
if (val) {
|
|
|
this.getArea('city', val, 1)
|
|
|
this.form.receiveProvinceName = this.addrProvinceList1.find(item => item.areaSn == val).name
|
|
@@ -615,7 +611,6 @@ export default {
|
|
|
getAreaList1 (val) {
|
|
|
this.addrDistrictList1 = []
|
|
|
this.form.receiveDistrictSn = undefined
|
|
|
- this.form.receiveAddress = ''
|
|
|
if (val) {
|
|
|
this.getArea('district', val, 1)
|
|
|
this.form.receiveCityName = this.addrCityList1.find(item => item.areaSn == val).name
|
|
@@ -625,7 +620,6 @@ export default {
|
|
|
},
|
|
|
// 区县变更
|
|
|
areaCharged1 (val) {
|
|
|
- this.form.receiveAddress = ''
|
|
|
if (val) {
|
|
|
this.form.receiveDistrictName = this.addrDistrictList1.find(item => item.areaSn == val).name
|
|
|
} else {
|