Authored by 陈轩

fix

@@ -77,7 +77,7 @@ const getSearchData = (params) => { @@ -77,7 +77,7 @@ const getSearchData = (params) => {
77 77
78 newList.list = productProcess.processProductList(result.data.product_list || [], {showTags: true}); 78 newList.list = productProcess.processProductList(result.data.product_list || [], {showTags: true});
79 79
80 - if (parseInt(params.page) === 1) { 80 + if (parseInt(params.page, 10) === 1) {
81 newList.total = result.data.total; 81 newList.total = result.data.total;
82 } 82 }
83 83