Эх сурвалжийг харах

new product 排序同步使用au的排序.

peter 5 сар өмнө
parent
commit
387cbf782a
1 өөрчлөгдсөн 19 нэмэгдсэн , 2 устгасан
  1. 19 2
      mixins/category.js

+ 19 - 2
mixins/category.js

@@ -398,6 +398,7 @@ export default {
       return divide(times(o, 100 + parseFloat(m)), 100)
     },
     getList() {
+      let sortFunc = defaultSortFunc
       let keyword =
         this.$route.params.thirdCategory ||
         this.$route.params.secondCategory ||
@@ -435,6 +436,14 @@ export default {
           keyword = 'new product'
           // config.facetFilters = ['filter:New product']
           config.restrictSearchableAttributes = 'filter'
+          sortFunc = (a, b) => {
+            if (a.hasNewProduct !== b.hasNewProduct) {
+              return b.hasNewProduct - a.hasNewProduct
+            }
+            if (a.ranking !== b.ranking) {
+              return b.ranking - a.ranking
+            }
+          }
         } else {
           config.restrictSearchableAttributes = 'cat_name'
         }
@@ -618,9 +627,9 @@ export default {
                     console.log('解析 collection 出错')
                   }
                   item.collection.forEach(a => {
+                    result.collections.push(a)
                     if (!collectionsList.some(i => a === i.name)) {
                       collectionsList.push({ name: a })
-                      result.collections.push(a)
                     }
                   })
                 }
@@ -637,7 +646,15 @@ export default {
           this.colourList = colorList
           // this.decorationList = []
           // this.complianceList = []
-          temp.sort(defaultSortFunc)
+          if (this.$route.fullPath.includes('searchResult')) {
+            temp.sort((a, b) => {
+              if (a.hasBestSeller !== b.hasBestSeller) {
+                return b.hasBestSeller - a.hasBestSeller
+              }
+            })
+          } else {
+            temp.sort(sortFunc)
+          }
           this.productsList = temp
           this.loaded = true
           this.listLoading = false