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

View File

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