...
|
...
|
@@ -50,12 +50,14 @@ const _formatOrderGoods = (orderGoods, count, haveLink, tickets) => { |
|
|
if (value.goods_type === 'gift') {
|
|
|
Object.assign(goods, {
|
|
|
gift: true,
|
|
|
salePrice: transPrice(value.sales_price)
|
|
|
salePrice: transPrice(value.sales_price),
|
|
|
payPrice: value.goods_price
|
|
|
});
|
|
|
} else if (value.goods_type === 'price_gift') {
|
|
|
Object.assign(goods, {
|
|
|
advanceBuy: true,
|
|
|
salePrice: transPrice(value.sales_price)
|
|
|
salePrice: transPrice(value.sales_price),
|
|
|
payPrice: value.goods_price
|
|
|
});
|
|
|
}
|
|
|
|
...
|
...
|
|