fix: 修复会员支付是否使用会员价判断问题

This commit is contained in:
YeMingfei666 2025-04-01 16:24:37 +08:00
parent 4764149cbe
commit 1b2e99522e
1 changed files with 1 additions and 1 deletions

View File

@ -470,7 +470,7 @@ function returnPayParams() {
shopId: localStorage.getItem("shopId"),
authCode: authCode,
checkOrderPay: {
vipPrice: props.user.id && props.user.isVip ? 1 : 0,
vipPrice: shopUser.userInfo.isMemberPrice && props.user.id && props.user.isVip ? 1 : 0,
orderId: props.orderInfo.id,
// discountRatio: (checkOrderPay.discount / 100).toFixed(2),
discountRatio: 0,