Showing
1 changed file
with
3 additions
and
1 deletions
@@ -172,9 +172,11 @@ const getBrandListByChannel = (channel) => { | @@ -172,9 +172,11 @@ const getBrandListByChannel = (channel) => { | ||
172 | name: row.brand_name, | 172 | name: row.brand_name, |
173 | isHot: row.is_hot === 'Y' ? true : false, | 173 | isHot: row.is_hot === 'Y' ? true : false, |
174 | isNew: row.is_show_new === 'Y' ? true : false, | 174 | isNew: row.is_show_new === 'Y' ? true : false, |
175 | - url: helpers.urlFormat('/product/index/brand', { | 175 | + url: row.type !== '3' ? helpers.urlFormat('/product/index/brand', { |
176 | domain: row.brand_domain, | 176 | domain: row.brand_domain, |
177 | shopType: row.type | 177 | shopType: row.type |
178 | + }) : helpers.urlFormat('/product/global/list/', { | ||
179 | + brand: row.global_brand_id | ||
178 | }) | 180 | }) |
179 | }); | 181 | }); |
180 | }); | 182 | }); |
-
Please register or login to post a comment