mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-21 08:46:46 +08:00
26 lines
1.0 KiB
JavaScript
26 lines
1.0 KiB
JavaScript
import http from "./configz";
|
|
import https from './confign'
|
|
// 导出案例接口
|
|
// export const boeuCaseExport = (obj,options) => http.get('/boeu/case/export', { params: obj },options)
|
|
|
|
//概览页面考试列表请求接口
|
|
export const boeuExamPageList = (obj) => http.post('/boeu/exam/pageList', obj)
|
|
|
|
//概览页面案例列表请求接口
|
|
export const boeuCasePageList = (obj) => http.post('/boeu/case/pageList', obj)
|
|
// 请求组织接口
|
|
export const userGetUserOrg = (obj) => https.post('/user/getUserOrg', obj)
|
|
|
|
// 课程列表接口
|
|
export const boeuCoursePageList = (obj) => http.post('/boeu/course/pageList', obj)
|
|
// 授课列表
|
|
export const boeuTeachingPageList = (obj) => http.post('/boeu/teaching/pageList', obj)
|
|
// 学习路径图页面
|
|
export const boeuRoterPageList = (obj) => http.post('/boeu/router/pageList', obj)
|
|
// 项目列表
|
|
export const boeuProjectPageList = (obj) => http.post('/boeu/project/pageList', obj)
|
|
|
|
// 学习数据列表
|
|
export const boeuStudyDataPageList = (obj) => http.post('/boeu/studyData/pageList', obj)
|
|
|