From 2c8f1626ec3d2e7f161c39ad7b789f335bb03b5b Mon Sep 17 00:00:00 2001 From: YunaiV Date: Thu, 1 May 2025 18:25:23 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E3=80=90=E5=95=86=E5=9F=8E?= =?UTF-8?q?=E3=80=91=E5=BA=97=E9=93=BA=E8=A3=85=E4=BF=AE-=E4=BC=98?= =?UTF-8?q?=E6=83=A0=E5=8A=B5=E5=8D=A1=E7=89=87=EF=BC=9AdiscountPercent=20?= =?UTF-8?q?=E5=B0=91=2010.0=20=E9=99=A4=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../DiyEditor/components/mobile/CouponCard/component.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/DiyEditor/components/mobile/CouponCard/component.tsx b/src/components/DiyEditor/components/mobile/CouponCard/component.tsx index 972b9af7..afe5dfd2 100644 --- a/src/components/DiyEditor/components/mobile/CouponCard/component.tsx +++ b/src/components/DiyEditor/components/mobile/CouponCard/component.tsx @@ -13,7 +13,7 @@ export const CouponDiscount = defineComponent({ setup(props) { const coupon = props.coupon as CouponTemplateApi.CouponTemplateVO // 折扣 - let value = coupon.discountPercent + '' + let value = coupon.discountPercent / 10 + '' let suffix = ' 折' // 满减 if (coupon.discountType === PromotionDiscountTypeEnum.PRICE.type) {