wxml
<scroll-view
scroll-y="true"
enable-back-to-top="true"
scroll-with-animation="true"
scroll-top="{{top_num}}"
bindscroll="scroll_distance">
</scroll-view>
<view bindtap="backtop" wx:if="{{showBackTop}}">
<icon></icon>
</view>
js
Page({
data : {
showBackTop : false
top_num : 0,
},
scroll_distance: function(event) {
this.setData({
showBackTop: event.detail.scrollTop > 300 ? true : false
})
},
backtop : function(){
this.setData({top_num:0})
}
})
小程序基础库v2.10.1
微信版本7.0.10
问题已复现,我们处理下
代码片段:
https://developers.weixin.qq.com/s/wE01C2ma70fA
麻烦提供能复现问题的代码片段https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html
换个基础库看下。2.10.1 版本基础库 bug挺多。真机是否也有该问题,如果有麻烦写个代码片段,我看下。