diff --git a/components/orderCoupon.vue b/components/orderCoupon.vue
index 9cd3332..78d478f 100644
--- a/components/orderCoupon.vue
+++ b/components/orderCoupon.vue
@@ -21,18 +21,28 @@
到期时间:{{item.effectType == 0 ? '永久有效' : item.endTime}}
-
+
+ 不可用:
+ {{item.canUseReason}}
+
+
+ 说明:{{item.couponEntity.remark}}
-
+
-
+
diff --git a/pages/goods/order/index.vue b/pages/goods/order/index.vue
index 1c04d1b..1ed3e96 100644
--- a/pages/goods/order/index.vue
+++ b/pages/goods/order/index.vue
@@ -716,7 +716,8 @@
console.log("可用优惠券列表", res);
res.couponHistoryList.forEach( item =>{
if(item.couponEntity.useLevel > this.totalPrice){
- item.canUse = 0
+ item.canUse = 0
+ item.canUseReason = "未到使用门槛"
}
})
this.couponHistoryList = res.couponHistoryList