Showing
1 changed file
with
1 additions
and
1 deletions
@@ -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 |
-
Please register or login to post a comment