<!--wxml-->
<scroll-view scroll-top="{{scrollTop}}" scroll-y="true" style="height:{{scrollHeight}}px;" bindscrolltolower="toLowFun" bindscroll="scroll">
</scroll-view>
//js
toLowFun() {
console.log("触底事件");
}

image.png
<!--wxml-->
<scroll-view scroll-top="{{scrollTop}}" scroll-y="true" style="height:{{scrollHeight}}px;" bindscrolltolower="toLowFun" bindscroll="scroll">
</scroll-view>
//js
toLowFun() {
console.log("触底事件");
}