From 6b2c5eaceb5cad63d0909357cd8e4ab03f4a27c8 Mon Sep 17 00:00:00 2001 From: yanzai Date: Thu, 31 Oct 2024 23:34:44 +0800 Subject: [PATCH] =?UTF-8?q?=E5=89=8D=E7=AB=AF=E6=8F=90=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- h5/pages/main/coupon/coupon.vue | 13 +++++++++++++ 1 file changed, 13 insertions(+) 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) { + + } + } + }); } };