From 57199573302f8118c52e11fff7bdd4ee5d918152 Mon Sep 17 00:00:00 2001 From: setthawutttty Date: Fri, 1 Sep 2023 13:17:05 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B8=A3=E0=B8=B2=E0=B8=A2=E0=B8=81=E0=B8=B2?= =?UTF-8?q?=E0=B8=A3=20Exit=20interview=20=E0=B9=80=E0=B8=9E=E0=B8=B4?= =?UTF-8?q?=E0=B9=88=E0=B8=A1=E0=B8=9F=E0=B8=B4=E0=B8=A5=20=E0=B8=A7?= =?UTF-8?q?=E0=B8=B1=E0=B8=99=E0=B8=99=E0=B8=B1=E0=B8=94=E0=B8=AB=E0=B8=A1?= =?UTF-8?q?=E0=B8=B2=E0=B8=A2=E0=B9=80=E0=B8=9E=E0=B8=B7=E0=B9=88=E0=B8=AD?= =?UTF-8?q?=E0=B8=AA=E0=B8=B1=E0=B8=A1=E0=B8=A0=E0=B8=B2=E0=B8=A9=E0=B8=93?= =?UTF-8?q?=E0=B9=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/ExitInterview/exitMain.vue | 23 ++++++++++++++++++- .../interface/response/exitInterview.ts | 1 + 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/src/modules/06_retirement/components/ExitInterview/exitMain.vue b/src/modules/06_retirement/components/ExitInterview/exitMain.vue index 843e59de4..8c6f8e053 100644 --- a/src/modules/06_retirement/components/ExitInterview/exitMain.vue +++ b/src/modules/06_retirement/components/ExitInterview/exitMain.vue @@ -103,6 +103,17 @@ const columns = ref([ sort: (a: string, b: string) => a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }), }, + { + name: "appointDate", + align: "left", + label: "วันนัดหมายเพื่อสัมภาษณ์", + sortable: true, + field: "appointDate", + headerStyle: "font-size: 14px", + style: "font-size: 14px", + sort: (a: string, b: string) => + a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }), + }, { name: "datetext", align: "left", @@ -138,7 +149,6 @@ const filterKeyword2 = ref(""); //ค้นหา คอลัมน์ คอลัมน์ที่แสดง const filterKeyword = ref(""); const filterRef = ref(null); - const openModal = () => (modal.value = true); const closeModal = () => (modal.value = false); @@ -198,6 +208,7 @@ const fecthlist = async () => { suggestFriendsReason: r.suggestFriendsReason ?? "", suggestion: r.suggestion ?? "", status: r.status ?? "", + appointDate: date2Thai(r.appointDate) }); }); @@ -397,6 +408,15 @@ const saveAppoint = async () =>{ {{ props.row.havejobReason }} + + {{ props.row.appointDate == null ? "-":props.row.appointDate }} + {