Showing
2 changed files
with
2 additions
and
2 deletions
@@ -394,7 +394,7 @@ exports.getSearchKeywordData = (params, channel) => { | @@ -394,7 +394,7 @@ exports.getSearchKeywordData = (params, channel) => { | ||
394 | let apiMethod = [ | 394 | let apiMethod = [ |
395 | headerModel.requestHeaderData(channel), | 395 | headerModel.requestHeaderData(channel), |
396 | searchApi.getSuggest({keyword: searchParams.query.substring(0, 2)}), | 396 | searchApi.getSuggest({keyword: searchParams.query.substring(0, 2)}), |
397 | - searchApi.getProductList(searchParams, 'fuzzySearch') | 397 | + searchApi.getProductList(Object.assign({order: 'h_v_desc'}, searchParams), 'fuzzySearch') |
398 | ]; | 398 | ]; |
399 | 399 | ||
400 | return api.all(apiMethod).then(result => { | 400 | return api.all(apiMethod).then(result => { |
-
Please register or login to post a comment