diff --git a/pagesOrder/detail/components/list.vue b/pagesOrder/detail/components/list.vue index b7d5285..4a29f75 100644 --- a/pagesOrder/detail/components/list.vue +++ b/pagesOrder/detail/components/list.vue @@ -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)