diff --git a/h5/pages/main/coupon/coupon.vue b/h5/pages/main/coupon/coupon.vue index d15bdbc..6f59aab 100644 --- a/h5/pages/main/coupon/coupon.vue +++ b/h5/pages/main/coupon/coupon.vue @@ -51,6 +51,19 @@ const configRef = (e) => { if (!config_ref.value) { config_ref.value = e; mountedAction(); + uni.showModal({ + title: '提示', + content: '优惠券仅可用于抵扣自选项目金额', + showCancel:false, + confirmText:'确定', + success: function (res) { + if (res.confirm) { + + } else if (res.cancel) { + + } + } + }); } };