Initial commit

This commit is contained in:
Viet An
2026-04-06 13:47:10 +07:00
commit f423d9ab20
439 changed files with 97497 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<script setup>
const props = defineProps({
row: Object,
});
const { $dayjs } = useNuxtApp();
</script>
<template>
<tr>
<td>{{ row.empcode }}</td>
<td>{{ row.empname }}</td>
<td>{{ $dayjs(row.date).format('DD/MM/YYYY') }}</td>
<td>{{ row.checkin ? $dayjs(row.checkin).format('HH:mm') : '-' }}</td>
<td>{{ row.checkout ? $dayjs(row.checkout).format('HH:mm') : '-' }}</td>
<td>{{ row.duration ? row.duration + ' giờ' : '-' }}</td>
<td>
<span class="tag">{{ row.status }}</span>
</td>
</tr>
</template>