Showing
1 changed file
with
1 additions
and
1 deletions
@@ -190,7 +190,7 @@ module.exports = class extends global.yoho.BaseModel { | @@ -190,7 +190,7 @@ module.exports = class extends global.yoho.BaseModel { | ||
190 | name: _.get(row, 'brand_name', ''), | 190 | name: _.get(row, 'brand_name', ''), |
191 | isHot: _.get(row, 'is_hot') === 'Y' ? true : false, | 191 | isHot: _.get(row, 'is_hot') === 'Y' ? true : false, |
192 | isNew: _.get(row, 'is_show_new') === 'Y' ? true : false, | 192 | isNew: _.get(row, 'is_show_new') === 'Y' ? true : false, |
193 | - url: this._urlJump(parseInt(row.type, 10), row) | 193 | + url: this._urlJump(parseInt(_.get(row, 'type'), 10), row) |
194 | }); | 194 | }); |
195 | } | 195 | } |
196 | }); | 196 | }); |
-
Please register or login to post a comment