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)