diff --git a/src/layouts/schedule/schedule.vue b/src/layouts/schedule/schedule.vue index 5c54c07f3..377a49ad3 100644 --- a/src/layouts/schedule/schedule.vue +++ b/src/layouts/schedule/schedule.vue @@ -1130,29 +1130,6 @@ export default { ); } }, - getTimeSlotInfo() { - // Get the current date - const currentDate = getTodayDate(); - - // Add 10 days to the current date - currentDate.setDate(currentDate.getDate() + 10); - - // Format the date as yyyy-mm-dd - const year = currentDate.getFullYear(); - const month = String(currentDate.getMonth() + 1).padStart(2, "0"); - const day = String(currentDate.getDate()).padStart(2, "0"); - - const formattedDate = `${year}-${month}-${day}`; - - return { - date: formattedDate, - endTime: "12:00", - jobMaxMinutes: "180", - jobMinMinutes: "120", - routeCode: "3357I-03357-M-I*20988*AM", - startTime: "08:00", - }; - }, onShopSelected(shopQuestionPopUpData) { this.resetWaitlist(); this.preSelectedDate = null;