From 68ab276ed30756b2dbc3142e303c6fa2792ef136 Mon Sep 17 00:00:00 2001 From: Atchara Bunserm <65160207@go.buu.ac.th> Date: Mon, 3 Mar 2025 22:20:19 +0700 Subject: [PATCH] Add Text <p> priority --- src/views/ProductQueueView.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/views/ProductQueueView.vue b/src/views/ProductQueueView.vue index 1d818e7..b2a2d05 100644 --- a/src/views/ProductQueueView.vue +++ b/src/views/ProductQueueView.vue @@ -81,7 +81,8 @@ const handleDrop = (targetOrder) => { <!-- Order Priority --> <v-col cols="6"> - <v-card class="pa-4" style="background-color: white; border-radius: 15px; min-height: 280px"> + <v-card class="pa-5" style="background-color: white; border-radius: 15px; min-height: 280px"> + <p class="text-center font-weight-bold mb-4 text-black" style="font-size: 20px;">ลำดับความสำคัญ</p> <div v-for="order in orders" :key="order.id" class="order-item" draggable="true" @dragstart="() => handleDragStart(order)" @dragover="handleDragOver" @drop="() => handleDrop(order)"> {{ order.name }} -- GitLab