mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-12 12:26:47 +08:00
7 lines
307 B
JavaScript
7 lines
307 B
JavaScript
import http from "./config";
|
|
|
|
//获取面授课开课详情
|
|
export const queryFaceDetailById = (offcoursePlanId) => http.post(`/admin/offcourse/detailPlan?offcoursePlanId=` + offcoursePlanId + ``)
|
|
|
|
//新建或编辑面授课开课
|
|
export const editPlan = (obj) => http.post('/admin/offcourse/editPlan', obj) |