解决小程序下拉刷新 自定义TabBar 在安卓端会跟着下滑的问题。
思路
这个是小程序存在已久的bug 官方一直没有修复,那么怎样用正确的姿势解决下拉刷新呢?
关闭小程序默认的下拉刷新
在index.json 中关闭,这样整个TabBar页就没有下拉刷新了
“enablePullDownRefresh”: false,
自定义下拉刷新
用到的标签:
<view style="height:100%;">
<scroll-view scroll-y="true" scroll-top="{
{scrolltop}}" bindscroll="scroll" style="width:100%;height:100%" bindtouchstart="refstart" bindtouchend="touchend" >
<view style="min-height:120%;">
<