From f69225dbff9708ea64e25be2386c757cb1c257c7 Mon Sep 17 00:00:00 2001 From: zoujing Date: Wed, 26 Nov 2025 22:24:04 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E5=95=86=E5=93=81=E7=9A=84=E8=AE=A1?= =?UTF-8?q?=E7=AE=97=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/pages-booking/components/FooterSection/index.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/pages-booking/components/FooterSection/index.vue b/src/pages-booking/components/FooterSection/index.vue index 8ea16e4..732796b 100644 --- a/src/pages-booking/components/FooterSection/index.vue +++ b/src/pages-booking/components/FooterSection/index.vue @@ -55,9 +55,8 @@ const count = computed({ }); const totalAmt = computed(() => { - const { totalDays } = props.selectedDate; + const { totalDays = 1 } = props.selectedDate; const { specificationPrice } = props.orderData; - return count.value * Number(specificationPrice) * totalDays; });