关于pageScrollTo
每次都是第一次执行,第二次的时候就不执行了
wx.createSelectorQuery().select(id).boundingClientRect(function (rect) {
// 使页面滚动到底部
if (rect) {
console.log(rect)
let height = 300 + Number(that.isScrollTop)
console.log(height)
wx.pageScrollTo({
scrollTop: height
})
}
}).exec()