前端工作总结248-uni-预加载问题
发布时间:2023-12-09 14:54:07 327 相关标签:
<u-loadmore :status="status" />
onReachBottom() {
console.log('触底~~~~')
if (this.pageNo >= this.pages){
this.status = 'nomore';
return;
}
this.status = 'loading';
this.pageNo = ++this.pageNo;
setTimeout(() => {
this.getData()
if (this.pageNo >= this.pages) {
this.status = 'nomore';
} else {
this.status = 'loading';
}
}, 2000)
}
文章来源: https://blog.51cto.com/u_14476028/5684667
特别声明:以上内容(图片及文字)均为互联网收集或者用户上传发布,本站仅提供信息存储服务!如有侵权或有涉及法律问题请联系我们。
举报