Fix:4127 【商城小程序】订单结算页面的优惠详情弹窗—勾选其他优惠券后点击【×】关闭按钮,再次打开弹窗会显示勾选新选择的优惠券

This commit is contained in:
linxi
2025-08-05 16:47:21 +08:00
parent a2250ccc9a
commit a9a7a46807
3 changed files with 32 additions and 13 deletions
+3 -2
View File
@@ -192,15 +192,16 @@
:round="10"
mode="bottom"
close-on-click-overlay
@close="changeCoupons"
@close="close"
>
<CouponsPopup
v-if="couponList.usable && couponList.usable.length > 0"
v-if="couponList.usable && couponList.usable.length > 0 && showPopup"
:two-list="couponList"
@change="changeCoupons"
:currentPrice="computedResult.canUseCouponPrice"
@close="close"
:id="couponId"
:couponId1="couponId"
:show-tab="false"
/>
</u-popup>