feat/encounter: improved processing needs

This commit is contained in:
2025-10-19 21:57:17 +07:00
parent 971ff14682
commit 761fe4e0ed
6 changed files with 155 additions and 57 deletions
+2 -2
View File
@@ -15,8 +15,8 @@ export function getList(params: any = null) {
return base.getList(path, params, name)
}
export function getDetail(id: number | string) {
return base.getDetail(path, id, name)
export function getDetail(id: number | string, params?: any) {
return base.getDetail(path, id, name, params)
}
export function update(id: number | string, data: any) {