...
|
...
|
@@ -393,7 +393,7 @@ const getOrders = (uid, page, limit, type, isPage)=> { |
|
|
|
|
|
// 赠品、加价购
|
|
|
if (good.goods_type === 'gift' || good.goods_type === 'price_gift') {
|
|
|
newGood.price = transPrice(good.real_pay_price);// 显示分摊价
|
|
|
newGood.price = transPrice(good.goods_price);// 显示成交价
|
|
|
newGood.linePrice = transPrice(good.sales_price); // 划线的价格
|
|
|
}
|
|
|
|
...
|
...
|
@@ -808,7 +808,7 @@ const _getOrderDetail = co(function * (uid, orderId) { |
|
|
|
|
|
// 赠品、加价购
|
|
|
if (good.goods_type === 'gift' || good.goods_type === 'price_gift') {
|
|
|
newGood.price = transPrice(good.real_pay_price);// 显示分摊价
|
|
|
newGood.price = transPrice(good.goods_price);// 显示成交价
|
|
|
newGood.linePrice = transPrice(good.sales_price); // 划线的价格
|
|
|
}
|
|
|
|
...
|
...
|
|