feat: add date range search functionality to personnel management
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 8s

This commit is contained in:
puriphatt 2025-04-17 18:04:12 +07:00
parent 648ed38181
commit 285b821c16
2 changed files with 42 additions and 17 deletions

View file

@ -168,6 +168,8 @@ const useUserStore = defineStore('api-user', () => {
status?: Status;
responsibleDistrictId?: string;
activeBranchOnly?: boolean;
startDate?: string;
endDate?: string;
}) {
const res = await api.get<Pagination<User[]>>('/user', { params: opts });