แก้ไขการแสดงผล และการดึงข้อมูลในส่วนของประวัติและการลงเวลาพิเศษ

This commit is contained in:
Warunee Tamkoo 2023-12-13 11:37:17 +07:00
parent 062588d0bd
commit 61ce6f966c
4 changed files with 39 additions and 31 deletions

View file

@ -9,6 +9,7 @@ const { date2Thai } = mixin
export const useChekIn = defineStore('checkin', () => {
const year = ref<number>(new Date().getFullYear())
const rows = ref<Datalist[]>()
const tab = ref<string>('history')
/**
* map
@ -94,5 +95,6 @@ export const useChekIn = defineStore('checkin', () => {
year,
fetchHistoryList,
classColorStatus,
tab
}
})