From 4ba168d0187f5214a0b2a97c79aa993f8775fcbe Mon Sep 17 00:00:00 2001 From: "DESKTOP-1R2VSQH\\Lenovo ThinkPad E490" Date: Fri, 25 Aug 2023 10:52:02 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B8=9B=E0=B8=A3=E0=B8=B1=E0=B8=9A=E0=B8=81?= =?UTF-8?q?=E0=B8=B2=E0=B8=A3=E0=B9=81=E0=B8=AA=E0=B8=94=E0=B8=87=20reason?= =?UTF-8?q?=20=E0=B8=82=E0=B8=AD=E0=B8=87=E0=B8=81=E0=B8=B2=E0=B8=A3?= =?UTF-8?q?=E0=B8=88=E0=B8=B1=E0=B8=94=E0=B8=81=E0=B8=B2=E0=B8=A3=E0=B8=84?= =?UTF-8?q?=E0=B8=B3=E0=B8=82=E0=B8=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../07_insignia/components/2_Manage/Tab2.vue | 146 ++++++++++++++---- .../07_insignia/components/2_Manage/Tab3.vue | 20 ++- 2 files changed, 135 insertions(+), 31 deletions(-) diff --git a/src/modules/07_insignia/components/2_Manage/Tab2.vue b/src/modules/07_insignia/components/2_Manage/Tab2.vue index 91b60fe22..4cb620dca 100644 --- a/src/modules/07_insignia/components/2_Manage/Tab2.vue +++ b/src/modules/07_insignia/components/2_Manage/Tab2.vue @@ -195,47 +195,112 @@ const dialogNote = ref(false); const dialogTitle = ref(""); const dialogDesc = ref(""); const showReson = (name: string, requestNote: string) => { - dialogTitle.value = 'หมายเหตุของ' + name; + dialogTitle.value = "หมายเหตุของ" + name; dialogDesc.value = requestNote; dialogNote.value = true; -} +}; const closeReson = () => { dialogNote.value = false; -} - +};