请问如何解决这个问题
// 加载状态结束
this.loading = false; // 数据全部加载完成 if (this.total.length<10) { //判断数据是否已经加载完成,最后一次list 长度小于等于10的时候 this.finished = true; this.finishedText = "加载完毕"; } else if (this.total == 0 && this.totalAll == 0) { //判断有无搜索到数据 this.finished = true; this.finishedText = "没有搜索到符合条件的设备"; } else { //下拉刷新每次增加一个页面请求 this.page = this.page + 1; this.getData(); }
手动将loading置为 false. 或者说将finished 置为 true. 一般加载完成选择将finished 置为 true
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(2)
// 加载状态结束
手动将loading置为 false. 或者说将finished 置为 true. 一般加载完成选择将finished 置为 true