Merge branch 'feature/brandJump' into 'release/5.6'
type格式 See merge request !467
Showing
1 changed file
with
1 additions
and
1 deletions
@@ -172,7 +172,7 @@ const getBrandListByChannel = (channel) => { | @@ -172,7 +172,7 @@ 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: row.type !== '3' ? helpers.urlFormat('/product/index/brand', { | 175 | + url: parseInt(row.type, 10) !== 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/', { | 178 | }) : helpers.urlFormat('/product/global/list/', { |
-
Please register or login to post a comment