微信小程序分页加载列表:
项目开发时很多页面都需要用到分页加载列表,为了方便,自己封装了分页加载列表组件,下拉刷新列表,滑动至底部,加载更多
组件界面:
可以扫码查看是否符合自己的需求
wxml:
<!--components/loadList/index.wxml-->
<scroll-view scroll-y="true" refresher-enabled refresher-triggered="{
{ isRefreshering }}" style="height: 100%;" bindrefresherrefresh="handleRefresh" bindscrolltolower="handleTolower">
<view class="scroll-body">
<view class="scroll-list">
<slot></slot>
</view>
<view wx:if="{
{ isLoading }}" class="scroll-more">
<image src="../../static/images/loading.gif" mode="widthFix" class="icon-loading"></image>