浏览代码

搜索页:数据缓存

panyong 3 年之前
父节点
当前提交
1b538ed659
共有 2 个文件被更改,包括 23 次插入3 次删除
  1. 1 1
      htmldev/cps/src/views/category/index/index.vue
  2. 22 2
      htmldev/cps/src/views/search/index.vue

+ 1 - 1
htmldev/cps/src/views/category/index/index.vue

@@ -193,7 +193,7 @@ export default {
     }
   },
   beforeRouteLeave (to, from, next) {
-    if (['CategoryDetail'].findIndex(item => item === to.name) > -1) {
+    if (['MarketingSave', 'Invite', 'Mine', 'Search', 'CategoryDetail'].findIndex(item => item === to.name) > -1) {
       from.meta.isUseCache = true
     }
     this.numPositionY = this.$refs.myMain.scroll ? this.$refs.myMain.scroll.y : 0

+ 22 - 2
htmldev/cps/src/views/search/index.vue

@@ -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>