expandButton: function () {
this.setData({
'buttonStyle': 'right: 2%;'
});
},
collapseButton: function () {
this.setData({
'buttonStyle': 'right: -8%;'
});
},
//监听页面滚动
onPageScroll: function (e) {
if (e.scrollTop > this.data.lastScrollTop) {
// scrolling down
this.expandButton();
} else {
// scrolling up
this.collapseButton();
}
this.setData({
lastScrollTop: e.scrollTop
});
},
你好,麻烦提供出现问题的具体机型、微信版本号、系统版本号,以及能复现问题的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)