...
|
...
|
@@ -190,7 +190,7 @@ module.exports = class extends global.yoho.BaseModel { |
|
|
name: _.get(row, 'brand_name', ''),
|
|
|
isHot: _.get(row, 'is_hot') === 'Y' ? true : false,
|
|
|
isNew: _.get(row, 'is_show_new') === 'Y' ? true : false,
|
|
|
url: this._urlJump(parseInt(row.type, 10), row)
|
|
|
url: this._urlJump(parseInt(_.get(row, 'type'), 10), row)
|
|
|
});
|
|
|
}
|
|
|
});
|
...
|
...
|
|