From 1a6963f0c55212ed9b8f47d3a0e384d65504308b Mon Sep 17 00:00:00 2001 From: wangxiaowei <1121133807@qq.com> Date: Thu, 25 Dec 2025 14:46:50 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=86=E9=A2=84=E5=AE=9A=E6=97=B6=E9=97=B4?= =?UTF-8?q?=E9=99=90=E5=88=B6=E5=8F=96=E6=B6=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/BookingTime.vue | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/BookingTime.vue b/src/components/BookingTime.vue index e12dc18..4e87cf7 100644 --- a/src/components/BookingTime.vue +++ b/src/components/BookingTime.vue @@ -141,10 +141,10 @@ return } - if (countSelectedTime.value < props.day.minimum_time) { - toast.info(props.day.minimum_time + '小时起订') - return - } + // if (countSelectedTime.value < props.day.minimum_time) { + // toast.info(props.day.minimum_time + '小时起订') + // return + // } // 返回所有已选的时间段(含日期、时间、timestamp)及所有timestamp数组 const sortedSelected = selectedTime.value.slice().sort((a, b) => a.timestamp - b.timestamp)