|
@@ -137,8 +137,7 @@
|
|
|
modal: {
|
|
|
visibleModal: false
|
|
|
},
|
|
|
-
|
|
|
-
|
|
|
+ addrsList:[],
|
|
|
}
|
|
|
},
|
|
|
onShow() {
|
|
@@ -200,6 +199,7 @@
|
|
|
}).catch(err => {
|
|
|
console.log(err)
|
|
|
});
|
|
|
+ this.getAddrs();
|
|
|
|
|
|
},
|
|
|
methods: {
|
|
@@ -275,7 +275,24 @@
|
|
|
done()
|
|
|
},
|
|
|
buy(item){
|
|
|
- console.log('item',item);
|
|
|
+ // console.log('item',item);
|
|
|
+ console.log('this.addrsList',this.addrsList);
|
|
|
+ if(this.addrsList.length <=0){
|
|
|
+ uni.showToast({
|
|
|
+ title:"您还未设置收货地址,将跳到设置页!",
|
|
|
+ icon:"none",
|
|
|
+ duration:2000
|
|
|
+ });
|
|
|
+ setTimeout(i=>{
|
|
|
+ uni.navigateTo({
|
|
|
+ url: '/pages/usercenter/addrs/addrs',
|
|
|
+ fail:function(err){
|
|
|
+ console.log(err)
|
|
|
+ }
|
|
|
+ });
|
|
|
+ },2000);
|
|
|
+ return;
|
|
|
+ }
|
|
|
if(!this.product.price){
|
|
|
uni.showToast({
|
|
|
icon:'none',
|
|
@@ -288,9 +305,18 @@
|
|
|
this.modal.visibleModal = true;
|
|
|
this.$nextTick(res => {
|
|
|
this.$refs.quickBuy.openPop();
|
|
|
- });
|
|
|
-
|
|
|
- }
|
|
|
+ });
|
|
|
+ },
|
|
|
+ getAddrs(){
|
|
|
+ // console.log('this.token',this.token);
|
|
|
+ let thetoken = this.params.tokenhead + this.params.token;
|
|
|
+ this.$api.http.get(this.config.apiBaseurl + '/member/address/list',{header: {Authorization:thetoken}}).then(res => {
|
|
|
+ // console.log('getAddrList', res.data.data);
|
|
|
+ this.addrsList = res.data.data;
|
|
|
+ }).catch(err => {
|
|
|
+ // console.log('err', err)
|
|
|
+ })
|
|
|
+ },
|
|
|
|
|
|
}
|
|
|
}
|