feat: add encounter list component with filtering, CRUD actions, and document management capabilities.
This commit is contained in:
@@ -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()
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user