Authored by 郭成尧

Merge branch 'feature/brandJump' into 'release/5.6'

type格式



See merge request !467
@@ -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/', {