feat: 概览,学习组织数据接口联调

This commit is contained in:
mx00085@163.com
2023-02-20 14:12:54 +08:00
parent e23339bea3
commit d19aba8623
9 changed files with 1327 additions and 285 deletions

25
src/api/indexOvervoew.js Normal file
View File

@@ -0,0 +1,25 @@
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)