|
@@ -495,7 +495,6 @@ export default {
|
|
|
this.form.shippingAddressCityName = ''
|
|
|
this.form.shippingAddressCountySn = undefined
|
|
|
this.form.shippingAddressCountyName = ''
|
|
|
- this.form.shippingAddress = ''
|
|
|
if (val) {
|
|
|
this.getArea('city', val)
|
|
|
this.form.shippingAddressProvinceName = this.addrProvinceList.find(item => item.areaSn == val).name
|
|
@@ -508,7 +507,6 @@ export default {
|
|
|
this.addrDistrictList = []
|
|
|
this.form.shippingAddressCountySn = undefined
|
|
|
this.form.shippingAddressCountyName = ''
|
|
|
- this.form.shippingAddress = ''
|
|
|
if (val) {
|
|
|
this.getArea('district', val)
|
|
|
this.form.shippingAddressCityName = this.addrCityList.find(item => item.areaSn == val).name
|
|
@@ -518,7 +516,6 @@ export default {
|
|
|
},
|
|
|
// 区县变更
|
|
|
areaCharged (val) {
|
|
|
- this.form.shippingAddress = ''
|
|
|
if (val) {
|
|
|
this.form.shippingAddressCountyName = this.addrDistrictList.find(item => item.areaSn == val).name
|
|
|
} else {
|