Authored by yyq

shop url

... ... @@ -175,7 +175,7 @@ const largeSlideImg = (data, shopId) => {
if (!url) {
url = `${shopListUrl}?shopId=${shopId}`;
}
url += `&filter_poolId=${value.categoryId}`;
url += `&productPool=${value.categoryId}`;
}
dest.push({
img: value.src,
... ... @@ -204,7 +204,7 @@ const oneRowTwoColImages = (data, shopId) => {
if (!url) {
url = `${shopListUrl}?shopId=${shopId}`;
}
url += `&filter_poolId=${value.categoryId}`;
url += `&productPool=${value.categoryId}`;
}
dest.push({
img: value.src,
... ... @@ -226,7 +226,7 @@ const recommend = (data, shopId) => {
let url = value.url || `${shopListUrl}?shopId=${shopId}`;
if (+value.categoryId > 0) {
url += `&filter_poolId=${value.categoryId}`;
url += `&productPool=${value.categoryId}`;
}
dest.push({
enName: value.enName,
... ...