Merge branch 'dev' into feat/consultation-82

This commit is contained in:
2025-10-19 22:56:00 +07:00
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) {