feat:增肌学习路径的增删改查

This commit is contained in:
李晓鸽
2022-10-28 18:23:26 +08:00
41 changed files with 2509 additions and 1300 deletions

View File

@@ -45,6 +45,12 @@ export const createLearnPath = (obj) => http.post('/admin/router/edit', obj, {
});
// 获取学习路径图列表
export const getLearnPath = (obj) => http.post('/admin/router/list', obj);
//删除学习路径图
export const deleteLearnPath = (obj) => http.post('/admin/router/handle', obj, {
headers: {
'token': '123'
}
});
//获取关卡
export const getChapter = (obj) => http.post('/admin/router/detail', { params: obj });