...
|
...
|
@@ -251,6 +251,14 @@ const getSearchParamsWithoutMethod = (params) => { |
|
|
finalParams.brand = params.brand_id || params.brand;
|
|
|
}
|
|
|
if (params.shop_id && params.shop_id !== '0') { // 店铺ID
|
|
|
let shopIdInt = _.parseInt(params.shop_id);
|
|
|
|
|
|
if (shopIdInt) {
|
|
|
params.shop_id = _.toString(shopIdInt);
|
|
|
} else {
|
|
|
params.shop_id = '';
|
|
|
}
|
|
|
|
|
|
finalParams.shop_id = params.shop_id;
|
|
|
}
|
|
|
if (params.type) { // 排序类型
|
...
|
...
|
|