feat: integrate date range selection in property management and workflow lists
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 8s

This commit is contained in:
puriphatt 2025-04-17 16:23:52 +07:00
parent fd5d4b7979
commit efeb1b51eb
3 changed files with 53 additions and 27 deletions

View file

@ -25,6 +25,8 @@ export const useProperty = defineStore('property-store', () => {
query?: string;
status?: Status;
activeOnly?: boolean;
startDate?: string;
endDate?: string;
}) {
const res = await api.get<PaginationResult<Property>>('/property', {
params,