// 路由跳转时记录scrollTop
this.$store.commit('SET_SCROLL', this.$refs.listcon.scroller.scrollTop)
//返回页面时是页面滚动到记录的位置
if (this.$store.getters.scroll !== 0) {
this.$nextTick(() => {
this.$refs.listcon.scroller.scrollTop = this.$store.getters.scroll
})
}
ps:$refs.listcon需限制高度,overflow:auto