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 }} + {