Merge branch 'develop' into devTee

# Conflicts:
#	src/modules/09_leave/components/2_Leave/DetailLeave.vue
This commit is contained in:
setthawutttty 2023-11-03 18:01:38 +07:00
commit 5d34c40b41
11 changed files with 257 additions and 148 deletions

View file

@ -0,0 +1,10 @@
interface ListsData {
id: string;
leaveType: string
name: string
Date: string
status: string
}
export type {
ListsData
}

View file

@ -0,0 +1,12 @@
interface ListData {
id: string;
fullname: string | null;
date: string | null;
dateFix: string | null;
startTimeMorning: string | null;
endTimeMorning: string | null;
startTimeAfternoon: string | null;
endTimeAfternoon: string | null;
status: string;
}
export type { ListData };