fix: 更新尊享包折扣规则为每10元减2.5元,最多减50元,并同步修改提示文案

This commit is contained in:
ccnetcore
2025-10-12 20:14:07 +08:00
parent db82a8cf08
commit 9bcdaf6bd8
2 changed files with 7 additions and 7 deletions

View File

@@ -218,11 +218,11 @@ public class PayService : ApplicationService, IPayService
if (discountAmount > 0)
{
discountDescription = $"已优惠 ¥{discountAmount:F2}累计充值每10元减1元,最多减20元";
discountDescription = $"已优惠 ¥{discountAmount:F2}累计充值每10元减2.5元,最多减50元";
}
else
{
discountDescription = "累计充值每10元可减1元,最多减20元";
discountDescription = "累计充值每10元可减2.5元,最多减50元";
}
}