<mt-loadmore :bottom-method="loadBottom" :bottom-all-loaded="allLoaded" @bottom-status-change="handleBotChange" ref="loadmore">
/*html*/
</mt-loadmore>
loadBottom () { var that = this; setTimeout(() => { // 重點在於 添加定時器 that.current++; // 請求頁數 that.req_carlist(); // 接口請求 that.$refs.loadmore.onBottomLoaded(); }, 1000); },
沒有添加setTimeout時,頁面向上拖拽後,向上的箭頭不釋放,而且頁面不能進行任何操做html