feat: add encounter list component with filtering, CRUD actions, and document management capabilities.

This commit is contained in:
riefive
2025-12-08 15:03:38 +07:00
parent 356647f810
commit b77646c9a6
@@ -245,11 +245,13 @@ function handleFilterApply(filters: { personName: string; startDate: string; end
} }
function handleFilterReset() { function handleFilterReset() {
isFilterFormDialogOpen.value = false
filterParams.value = {} filterParams.value = {}
getPatientList() getPatientList()
} }
function handleFilterSearch(filters: any) { function handleFilterSearch(filters: any) {
isFilterFormDialogOpen.value = false
filterParams.value = { ...filterParams.value, ...filters } filterParams.value = { ...filterParams.value, ...filters }
getPatientList() getPatientList()
} }