1、检查配置对应的config配置文件
export default {
enablePullDownRefresh: true,
}
2、查看是否有重复的onReachBottom 被覆盖
3、css页面高度height去除
.skuBuyFeed {
background-color: #121212;
width: 100vw;
// height: 100vh;
padding-top: 80px;
overflow-y: auto;
}
本文探讨了前端配置文件的检查,确保了下拉刷新功能的启用,并检查了页面底部加载事件的覆盖情况。同时,对CSS页面高度进行了调整,移除了固定高度以实现更流畅的滚动效果。
1、检查配置对应的config配置文件
export default {
enablePullDownRefresh: true,
}
2、查看是否有重复的onReachBottom 被覆盖
3、css页面高度height去除
.skuBuyFeed {
background-color: #121212;
width: 100vw;
// height: 100vh;
padding-top: 80px;
overflow-y: auto;
}

被折叠的 条评论
为什么被折叠?