fix(emr): 病历检索默认分页改为10条

This commit is contained in:
2026-06-21 14:50:11 +08:00
parent 88b35c13f8
commit 2956296301

View File

@@ -183,7 +183,7 @@ const queryParams = reactive({
doctorName: '',
departmentName: '',
pageNo: 1,
pageSize: 20
pageSize: 10
})
const emrTypeOptions = [
@@ -233,7 +233,7 @@ const resetQuery = () => {
doctorName: '',
departmentName: '',
pageNo: 1,
pageSize: 20
pageSize: 10
})
handleSearch()
}