/**
* 获取收货地址列表
* 接收参数
* 无需接收参数
* 接口传参
* 无需传入参数
*/
getaddresslist: function() {
let _this = this;
app._requestapi(_this, app.globaldata.config.shopaddresslisturl, {},
function (res) {
let list = res.data.list;
let default_id = res.data.default_id;
_this.setdata({
list,
default_id
});
},
function (res) {
app.showerror(res.msg);
}
);
},