From 267419e79ef3d36eafcfb9b16a2bb5af2c688166 Mon Sep 17 00:00:00 2001 From: Kritkhanin Anantakul <65160144@go.buu.ac.th> Date: Tue, 18 Mar 2025 17:08:35 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B9=89add=20head=20and=20fix=20time?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/GanttChart/GanttChart.vue | 4 ++-- src/components/GanttChart/ganttChart.css | 2 +- src/views/ProductQueueView.vue | 1 + 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/components/GanttChart/GanttChart.vue b/src/components/GanttChart/GanttChart.vue index 47c20fa..e00352b 100644 --- a/src/components/GanttChart/GanttChart.vue +++ b/src/components/GanttChart/GanttChart.vue @@ -110,8 +110,8 @@ onMounted(() => { // State สำหรับ Gantt Chart const showAddDialog = ref(false); const selectedDate = ref('2025-01-01'); -const startTime = ref('08:00'); -const endTime = ref('17:00'); +const startTime = ref('06:00'); +const endTime = ref('20:00'); const draggingQueue = ref<any | null>(null); const dragOffset = ref(0); diff --git a/src/components/GanttChart/ganttChart.css b/src/components/GanttChart/ganttChart.css index d9d2a57..015e570 100644 --- a/src/components/GanttChart/ganttChart.css +++ b/src/components/GanttChart/ganttChart.css @@ -91,7 +91,7 @@ font-size: 30px; font-weight: bold; margin: 10px 0 10px 30px; - color: #333; + color: #000000; } diff --git a/src/views/ProductQueueView.vue b/src/views/ProductQueueView.vue index e24eed3..ab16a73 100644 --- a/src/views/ProductQueueView.vue +++ b/src/views/ProductQueueView.vue @@ -40,6 +40,7 @@ const handleDrop = (targetOrder) => { </script> <template> + <div class="gantt-title">ตารางคิวการผลิต</div> <v-container class="pa-0"> <!-- Gantt chart --> <v-sheet class="pa-1 mb-3" -- GitLab