|
@@ -110,12 +110,25 @@ export default {
|
|
|
],
|
|
|
source: 'jd',
|
|
|
sort: 1,
|
|
|
- booGoodsWrap: false
|
|
|
+ booGoodsWrap: false,
|
|
|
+ numPositionY: 0
|
|
|
}
|
|
|
},
|
|
|
activated () {
|
|
|
if (!this.$route.meta.isUseCache) {
|
|
|
- } else {}
|
|
|
+ this.keyword = ''
|
|
|
+ this.source = 'jd'
|
|
|
+ this.sort = 1
|
|
|
+ this.booGoodsWrap = false
|
|
|
+ this.numPositionY = 0
|
|
|
+ } else {
|
|
|
+ this.$nextTick(() => {
|
|
|
+ if (this.$refs.myMain.scroll) {
|
|
|
+ this.$refs.myMain.scroll.refresh()
|
|
|
+ this.$refs.myMain.scroll.scrollTo(0, this.numPositionY)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ }
|
|
|
setTimeout(() => {
|
|
|
this.$refs.fbtCateList.resize()
|
|
|
}, 500)
|
|
@@ -151,6 +164,13 @@ export default {
|
|
|
this.$refs.myMain.init()
|
|
|
})
|
|
|
}
|
|
|
+ },
|
|
|
+ beforeRouteLeave (to, from, next) {
|
|
|
+ if (['CategoryDetail'].findIndex(item => item === to.name) > -1) {
|
|
|
+ from.meta.isUseCache = true
|
|
|
+ }
|
|
|
+ this.numPositionY = this.$refs.myMain.scroll ? this.$refs.myMain.scroll.y : 0
|
|
|
+ next()
|
|
|
}
|
|
|
}
|
|
|
</script>
|