【功能修复】订单确认页的可用优惠券数量统计

This commit is contained in:
卢越
2024-09-08 09:55:34 +08:00
parent 3e2749672e
commit b42c151585
+3 -1
View File
@@ -126,7 +126,9 @@
v-else
>
{{
state.couponInfo.length > 0 ? state.couponInfo.length + ' 张可用' : '暂无可用优惠券'
state.couponInfo.length > 0
? state.couponInfo.filter((coupon) => coupon.match).length + ' 张可用'
: '暂无可用优惠券'
}}
</text>
<text class="_icon-forward item-icon" />