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