1、在onshow中将height计算出来,使用屏幕高度减去页面其他控件占用高度得出scroll-view需要的高度 2、默认每页加载20条数据; 3、使用HasMore记录是否还有新的页面 4、LoadCustomerList这个方法是加载数据的方法,每次读取一页数据,PageIndex就增加对应值;如果读取的数据小于20条就表示没有新的数据了,HasMore即设置为false;...
initial: { createdIsNeed: true, // 此页面是否在创建时,调用查询数据列表接口? geturl: '', // API地址 getDataListIsPage: false, // 是否分页 method: 'GET' // 请求方式 }, loadingStatus: 'more', //more:上滑加载更多 loading:加载中 noMore:我是有底线的 timer: { pull: null, reachBottom...
php_yt 未填写
uni.hideLoading() uni.stopPullDownRefresh() // 停止下拉刷新 loading.value = false if (res && res.code == 0) { if (res.data.records.length < pageSize.value) { noMoreData.value = true status.value = 'noMore' } else { status.value = 'more' } if (isRefresh) { list.value = res...
uniapp 结合uview实现列表加载分页 uniapp开发小程序结合u-list实现加载分页 包含折叠面板 <template> <view class="flex-col page"> <view class="u-page__item"> <text class="u-collapse-content">{{item.content}}</text> </view> ...