xbx #307

Merged
theluyuan merged 2 commits from xbx into master 2020-08-27 06:04:11 +00:00
Showing only changes of commit 36f0675689 - Show all commits

View File

@ -262,7 +262,8 @@
loading: '努力加载中',
nomore: '实在没有了'
},
refresher:true
refresher:true,
zqie:false
}
},
components: {
@ -354,7 +355,11 @@
tabLiveList() {
uni.showLoading({
title: "loading..."
})
})
if(this.zqie){
return ;
}
this.zqie = true;
this.$u.api.tabLiveList({page:this.live_page}).then((res) => {
// uni.stopPullDownRefresh();
this.status_live = "loading";
@ -371,6 +376,7 @@
} else if (res.data.data.length == 0 && this.live_page > 1) {
this.status_live = "nomore";
} else {
console.log(this.live_page,1223)
this.tabLiveLists = this.tabLiveLists.concat(res.data.data);
console.log(this.tabLiveLists)
}
@ -381,6 +387,8 @@
} else {
this.status_live = "nomore"
}
this.zqie = false;
})
},