部门学员进度

This commit is contained in:
禺狨
2023-04-19 12:08:11 +08:00
parent f5ad3a4eb2
commit 2a2a091144
6 changed files with 290 additions and 2 deletions

View File

@@ -108,3 +108,16 @@ export function learnCourses(
...params,
});
}
export function departmentProgress(
id: number,
page: number,
size: number,
params: object
) {
return client.get(`/backend/v1/department/${id}/users`, {
page,
size,
...params,
});
}