diff --git a/commons/utils/goodsUtil.js b/commons/utils/goodsUtil.js
index 8c7a802..11a9921 100644
--- a/commons/utils/goodsUtil.js
+++ b/commons/utils/goodsUtil.js
@@ -21,6 +21,9 @@ export function canTuiKuan(orderInfo, item) {
return orderInfo.status == 'closed' && item.status != 'return' && item.status != 'refund' && item.status !=
'refunding' && !item.userCouponId
}
+export function isTuiCai(item) {
+ return item.status == 'return'
+}
export function isTui(item) {
return item.status == 'return' || item.status == 'refund' || item.status == 'refunding'
}
diff --git a/pageBwc/index/index.vue b/pageBwc/index/index.vue
index fe615a8..46b57a9 100644
--- a/pageBwc/index/index.vue
+++ b/pageBwc/index/index.vue
@@ -7,7 +7,7 @@
用户消费结账时,成功充值
-
+
倍的金额本单即可享受免单
@@ -17,7 +17,7 @@
订单支付金额需满
-
+
元,才能使用
diff --git a/pagesOrder/detail/components/list.vue b/pagesOrder/detail/components/list.vue
index 6e7506e..9e9912f 100644
--- a/pagesOrder/detail/components/list.vue
+++ b/pagesOrder/detail/components/list.vue
@@ -58,7 +58,7 @@
¥0.00
- ¥{{returnTotalMoney(item)}}
+ ¥{{returnTotalMoney(item)}}
@@ -67,7 +67,8 @@
-
+
¥{{returnVipMoney(item)}}
¥{{returnTotalMoney(item)}}
@@ -120,21 +121,21 @@
-
+
已优惠¥{{youhuiAllPrice}}
-
+
小计¥
{{allPrice}}
-
+
-
+
退款金额
@@ -165,46 +166,47 @@
重新打印
-
+
优惠详情
-
+
打折
¥
- {{orderInfo.discountAmount}}
+ {{to2(orderInfo.discountAmount) }}
-
+
满减券抵扣
¥
- {{orderInfo.fullCouponDiscountAmount}}
+ {{to2(orderInfo.fullCouponDiscountAmount) }}
-
+
商品券抵扣
¥
- {{orderInfo.productCouponDiscountAmount||productCoupPrice}}
+ {{to2(orderInfo.productCouponDiscountAmount||productCoupPrice) }}
积分抵扣
¥
- {{orderInfo.pointsDiscountAmount}}
+ {{to2(orderInfo.pointsDiscountAmount) }}
-
+
@@ -213,26 +215,31 @@