...
|
...
|
@@ -423,7 +423,7 @@ module.exports = class extends global.yoho.BaseModel { |
|
|
newGood.name = good.product_name;
|
|
|
newGood.color = good.factory_color_name;
|
|
|
newGood.size = good.size_name;
|
|
|
newGood.skuTitle = good.sku_title;
|
|
|
newGood.skuTitle = good.sku_title || '尺码';
|
|
|
newGood.price = that.transPrice(good.sales_price);// 默认显示销售价
|
|
|
newGood.isVipPrice = good.discount_tag === 'V';
|
|
|
newGood.isStuPrice = good.discount_tag === 'S';
|
...
|
...
|
@@ -860,7 +860,7 @@ module.exports = class extends global.yoho.BaseModel { |
|
|
name: good.product_name,
|
|
|
color: good.factory_color_name,
|
|
|
size: good.size_name,
|
|
|
skuTitle: good.sku_title,
|
|
|
skuTitle: good.sku_title || '尺码',
|
|
|
price: that.transPrice(good.sales_price), // 默认显示销售价
|
|
|
isVipPrice: good.discount_tag === 'V',
|
|
|
isStuPrice: good.discount_tag === 'S',
|
...
|
...
|
|