feat:学员获取 搜索重置查看 关卡阶段定位

This commit is contained in:
宋文超
2022-11-17 16:16:14 +08:00
parent 2129610601
commit 54b6e4d6ec
10 changed files with 473 additions and 430 deletions

View File

@@ -1,18 +1,14 @@
import http from "./config";
// 创建作业信息接口
export const createWorkTask = (obj) =>
http.post("/work/createWorkTask", obj, {
headers: {
token: "123",
},
});
http.post("/work/createWorkTask", obj);
// 删除作业信息接口
export const deleteWorkTask = (obj) => http.post("/work/deleteWorkTask", obj);
// 根据ID获取作业信息详情
export const queryWorkDetailById = (obj) => http.post('/work/queryWorkDetailById',obj,{
headers: {
'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8'
}
export const queryWorkDetailById = (obj) => http.post('/work/queryWorkDetailById', obj, {
headers: {
'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8'
}
});
// 修改作业信息接口
export const updateWorkTaskUsing = (obj) =>