Taro.pageScrollTo android 防抖动
2019-10-12 本文已影响0人
blossom_6694
滑动到顶部时,给pageScrollTo设置个duration
const duration = this.currentIndex == undefined && index == undefined ? 200 : 0
setTimeout(() => {
Taro.pageScrollTo({ scrollTop: this.yPosition, duration: this.yPosition == 0 ? 50 : 0 })
}, duration)