获取学习路径列表

This commit is contained in:
李晓鸽
2022-10-28 09:00:26 +08:00
parent 9d688abc03
commit b64ce03c62
6 changed files with 573 additions and 479 deletions

View File

@@ -37,6 +37,12 @@ import http from "./config";
// 接口-请求
//创建学习路径
export const createLearnPath = (obj) => http.post('/admin/router/edit', obj, {
headers: {
'token': '123'
}
});
// 获取学习路径图列表
export const getLearnPath = (obj) => http.post('/admin/router/list', obj);