提交 d253295d 编写于 作者: fxy060608's avatar fxy060608

fix(h5): 页面后退时,scroll-view 滚动位置不正确

上级 7d54165c
......@@ -166,6 +166,11 @@ export default {
passive: false
} : false)
},
activated () {
// 还原 scroll-view 滚动位置
this.scrollY && (this.$refs.main.scrollTop = this.lastScrollTop)
this.scrollX && (this.$refs.main.scrollLeft = this.lastScrollLeft)
},
beforeDestroy () {
this.$refs.main.removeEventListener('touchstart', this.__handleTouchStart, passiveOptions)
this.$refs.main.removeEventListener('touchmove', this.__handleTouchMove, passiveOptions)
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册