diff --git a/src/modules/09_leave/components/02_WorkList/Tab2.vue b/src/modules/09_leave/components/02_WorkList/Tab2.vue index ac597d3c1..6469328c6 100644 --- a/src/modules/09_leave/components/02_WorkList/Tab2.vue +++ b/src/modules/09_leave/components/02_WorkList/Tab2.vue @@ -129,6 +129,7 @@ async function fetchListLogRecord() { maxPage.value = Math.ceil(res.data.result.total / rowsPerPage.value); let datalist: TableRows[] = res.data.result.data.map((e: DataResLog) => ({ id: e.id, + profileType: e.profileType, fullName: e.fullName, checkInDate: e.checkInDate && date2Thai(e.checkInDate), checkInTime: e.checkInTime ? e.checkInTime : "-", @@ -177,7 +178,6 @@ onMounted(async () => { @update:pagination="updatePagingProp" v-model:role-status="roleStatus" /> -