feat:增加学习路径图-学员管理-列表操作-查看、调整、导出

This commit is contained in:
wyx
2023-01-15 14:53:22 +08:00
parent e31b92188e
commit 042f55c1c1
3 changed files with 325 additions and 45 deletions

View File

@@ -78,8 +78,9 @@ export const delStudent = (obj) =>
http.post("/admin/router/deleteStudent", obj);
// 获取学员路径图进度明细
export const stuProgress = (obj) =>
http.post("/admin/router/studentProcess", obj);
export const stuProgress = (params) => http.get('/admin/router/studentProcess', {params});
// export const stuProgress = (obj) =>http.post("/admin/router/studentProcess", obj);
//编辑学习路径基本信息
export const editLearnInfo = (obj) => http.post('/admin/router/editInfo', obj)