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 : "-" }}