vant中编辑地址的问题

onSave(content) {
Toast(‘save’);
this.name=content.name;
this.phone=content.tel;
this.province=content.province;
this.city=content.city;
this.region=content.county;
this.detail_addr=content.addressDetail;
this.group_message=content.isDefault;
this.areaCode=content.areaCode;
console.log(this.areaCode)
}
在使用编辑地址的UI时,我们需要onSave()往里面穿个参数。这样我们就可以接受到我们所选的值。
因为我们还需要去修改地址,此时 还需要this.areaCode=content.areaCode;保存我们所存的地区的编码,、
我们需要用这个地区编码来往
这里面添加默认地址

vant中编辑地址的问题_第1张图片

vant中编辑地址的问题_第2张图片
在请求的时候把信息都填进去,就可以设置默认地址
vant中编辑地址的问题_第3张图片
然后在调用这个方法

你可能感兴趣的:(vant中编辑地址的问题)