This commit is contained in:
2024-11-20 15:34:10 +08:00

View File

@@ -305,7 +305,7 @@
if (!props.seatFee.priceAmount) {
return 0
}
const n = props.seatFee.priceAmount * (props.seatFee.status == 'return' ? 0 : 1)
const n = props.seatFee.priceAmount * (isTui(props.seatFee) ? 0 : 1)
return n.toFixed(2)
})
const goodsOriginAllPrice = computed(() => {
@@ -365,8 +365,8 @@
})
const youhuiAllPrice = computed(() => {
// console.log(freePrice.value * 1 , vipDiscountPrice.value * 1 , props.orderInfo.fullCouponDiscountAmount ,props
// .orderInfo.pointsDiscountAmount , productCoupPrice.value * 1 , props.orderInfo.discountAmount);
console.log(freePrice.value * 1 , vipDiscountPrice.value * 1 , props.orderInfo.fullCouponDiscountAmount ,props
.orderInfo.pointsDiscountAmount , productCoupPrice.value * 1 , props.orderInfo.discountAmount);
return (freePrice.value * 1 + vipDiscountPrice.value * 1 + props.orderInfo.fullCouponDiscountAmount + props
.orderInfo.pointsDiscountAmount + productCoupPrice.value * 1 + (props.orderInfo.discountAmount ||
0)).toFixed(2)