mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-21 00:36:46 +08:00
22 lines
769 B
JavaScript
22 lines
769 B
JavaScript
import http from "./config";
|
|
|
|
/**
|
|
* 1
|
|
*/
|
|
//删除开课
|
|
export const deletePlan = (obj) =>
|
|
http.delete("/admin/offcourse/deletePlan", obj);
|
|
//新建或编辑面授课
|
|
export const edit = (obj) => http.post("/admin/offcourse/edit", obj);
|
|
//新建或编辑面授课开课
|
|
export const editPlan = (obj) => http.post("/admin/offcourse/editPlan", obj);
|
|
//操作面授课(发布,撤回,删除)
|
|
export const handle = (obj) => http.post("/admin/offcourse/handle", obj);
|
|
//获取面授课列表
|
|
export const list = (obj) => http.post("/admin/offcourse/list", obj);
|
|
//面授课开课列表
|
|
export const planList = (obj) => http.post("/admin/offcourse/planList", obj);
|
|
//获取学员列表
|
|
export const studentList = (obj) =>
|
|
http.post("/admin/offcourse/studentList", obj);
|