From 389b5ee30df8684798adb4c010a72cfddc633f7c Mon Sep 17 00:00:00 2001 From: "STW_TTTY\\stwtt" Date: Tue, 10 Sep 2024 16:04:23 +0700 Subject: [PATCH] =?UTF-8?q?=E0=B9=80=E0=B8=9E=E0=B8=B4=E0=B9=88=E0=B8=A1?= =?UTF-8?q?=20-?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../components/ExitInterview/exitMain.vue | 20 ++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/src/modules/06_retirement/components/ExitInterview/exitMain.vue b/src/modules/06_retirement/components/ExitInterview/exitMain.vue index d1432abee..eb2a63ba1 100644 --- a/src/modules/06_retirement/components/ExitInterview/exitMain.vue +++ b/src/modules/06_retirement/components/ExitInterview/exitMain.vue @@ -415,19 +415,23 @@ const openModalCalendar = (rows: any) => { {{ props.rowIndex + 1 }} - {{ props.row.fullname }} + {{ props.row.fullname ? props.row.fullname : "-" }} - {{ props.row.realReason }} + {{ props.row.realReason ? props.row.realReason : "-" }} - {{ props.row.notExitFactor }} + {{ props.row.notExitFactor ? props.row.notExitFactor : "-" }} {{ props.row.futureWork ? "ใช่" : "ไม่" }} - {{ props.row.futureWorkReason }} + {{ + props.row.futureWorkReason + ? props.row.futureWorkReason + : "-" + }} {{ props.row.havejob ? "ใช่" : "ไม่" }} @@ -435,16 +439,18 @@ const openModalCalendar = (rows: any) => {
- {{ props.row.havejobReason }} + {{ + props.row.havejobReason ? props.row.havejobReason : "-" + }}
{{ - props.row.appointDate == null ? "-" : props.row.appointDate + props.row.appointDate ? props.row.appointDate : "-" }} - {{ props.row.datetext }} + {{ props.row.datetext ? props.row.datetext : "-" }}