vue上拉加载更多数据

mounted() { var that = this; window.onscroll = function() { // scrollTop 滚动条滚动时,距离顶部的距离 var scrollTop = document.documentElement.scrollTop || document.body.scrollTop; // windowHeight 可视区的高度 var windowHeight = document.documentElement.clientHeight || document.body.clientHeight; // scrollHeight 滚动条的总高度 var scrollHeight = document.documentElement.scrollHeight || document.body.scrollHeight; // 滚动条到底部的条件 if (scrollTop + windowHeight == scrollHeight) { // 加载数据 that.page++; that.getProduct(); } }; }
联系我们

邮箱 626512443@qq.com
电话 18611320371(微信)
QQ群 235681453

Copyright © 2015-2022

备案号:京ICP备15003423号-3