fix: 修复会员支付是否使用会员价判断问题
This commit is contained in:
parent
4764149cbe
commit
1b2e99522e
|
|
@ -470,7 +470,7 @@ function returnPayParams() {
|
||||||
shopId: localStorage.getItem("shopId"),
|
shopId: localStorage.getItem("shopId"),
|
||||||
authCode: authCode,
|
authCode: authCode,
|
||||||
checkOrderPay: {
|
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,
|
orderId: props.orderInfo.id,
|
||||||
// discountRatio: (checkOrderPay.discount / 100).toFixed(2),
|
// discountRatio: (checkOrderPay.discount / 100).toFixed(2),
|
||||||
discountRatio: 0,
|
discountRatio: 0,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue