|
@@ -237,6 +237,7 @@
|
|
|
console.log(this.swiperCurrent);
|
|
|
},
|
|
|
getProductList(){
|
|
|
+ uni.showLoading({title: '加载中'});
|
|
|
this.$api.http.post(this.config.apiBaseurl + '/carbon-h5/wap/goodsManage/pushGoods',{"pageNo":1,"pageSize":6},{
|
|
|
header: {
|
|
|
Accept:'application/json',
|
|
@@ -244,8 +245,10 @@
|
|
|
},
|
|
|
}).then(res => {
|
|
|
this.productList = res.data.retBody;
|
|
|
+ uni.hideLoading();
|
|
|
// console.log('res',JSON.parse(JSON.stringify(res.data.retBody)))
|
|
|
}).catch(err =>{
|
|
|
+ uni.hideLoading();
|
|
|
console.log('err',err)
|
|
|
});
|
|
|
},
|
|
@@ -261,6 +264,7 @@
|
|
|
this.getRank(type);
|
|
|
},
|
|
|
getRank(){
|
|
|
+ uni.showLoading({title: '加载中'});
|
|
|
let params = {"type":this.rankType};
|
|
|
// console.log('this.thetoken',this.thetoken);
|
|
|
this.$api.http.get(this.config.apiBaseurl+'/carbon-h5/wap/carbonVal/getCustomerCarbonValRank',{params:params,header: {Authorization:this.thetoken}}).then(res => {
|
|
@@ -276,7 +280,9 @@
|
|
|
console.log('this.rankTop',JSON.parse(JSON.stringify(this.rankTop)))
|
|
|
this.rankList =this.rankResult.list.slice(3,this.rankResult.list.length);
|
|
|
console.log('res',JSON.parse(JSON.stringify(res.data.retBody)))
|
|
|
+ uni.hideLoading();
|
|
|
}).catch(err =>{
|
|
|
+ uni.hideLoading();
|
|
|
console.log('err',err)
|
|
|
});
|
|
|
},
|