<scroll-view :scroll-y="true" style="height: 880rpx;" bindscrolltolower="onReachBottom" lower-threshold="50">
這是內(nèi)容
<u-loadmore :status="loadStatus" @loadmore="" :load-text="loadText" v-if="CouponGoods.length>=10"></u-loadmore>
</scroll-view>
onReachBottom() {
if(this.CouponGoods.length>=10&&this.currentList>0) {
this.current++;
this.getCouponGoods();
}
},
使用bindscrolltolower 綁定請求下一頁的方法即可,但是使用scroll-view標(biāo)簽的話,會(huì)影響onPageScroll 函數(shù)的使用,也就是說我們獲取不到頁面滾動(dòng)的高度
lower-threshold number/string 距底部/右邊多遠(yuǎn)時(shí),觸發(fā) scrolltolower 事件
bindscrolltolower eventhandle 滾動(dòng)到底部/右邊時(shí)觸發(fā)