From 975921014f0856557c70f96e477230d572f450f5 Mon Sep 17 00:00:00 2001 From: YeMingfei666 <1619116647@qq.com> Date: Wed, 20 Nov 2024 15:32:11 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=AE=A2=E5=8D=95=E8=AF=A6?= =?UTF-8?q?=E6=83=85=E5=AE=A2=E5=BA=A7=E8=B4=B9=E5=88=A4=E6=96=AD=E6=98=AF?= =?UTF-8?q?=E5=90=A6=E9=80=80=E6=AC=BE=E6=96=B9=E6=B3=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pagesOrder/detail/components/list.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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)