8***@qq.com
8***@qq.com
  • 发布:2019-09-27 11:39
  • 更新:2019-09-27 11:39
  • 阅读:1807

关于uni-app上拉加载的问题

分类:uni-app

<view class="cu-load loading" v-show="loading"></view>
<view class="cu-load" v-show="nomore">
<text class="text-center text-gray text-sm">没有更多数据</text>
</view>

onReachBottom() {
this.loading = true;
this.nomore = false;
if (timer != null) {
clearTimeout(timer);
}
timer = setTimeout(() => {
this.pageNum++;
this.getlist(this.id);
}, 1000);
},

getlist执行完了没有数据显示没有更多数据这个div,,但是页面不会直接展示出来,,非要向下滑动一下才会显示,请问这个怎么解决

2019-09-27 11:39 负责人:无 分享
已邀请:

该问题目前已经被锁定, 无法添加新回复