feat: 文章,项目,课程接口联调

This commit is contained in:
mx00085@163.com
2023-03-28 18:09:48 +08:00
parent 76413d767a
commit e2740bf00e
5 changed files with 929 additions and 333 deletions

12
src/api/indexProject.js Normal file
View File

@@ -0,0 +1,12 @@
import http from "./configz";
import https from './confign'
// 请求组织接口
export const userGetUserOrg = (obj) => https.post('/user/getUserOrg', obj)
// 请求所属组织接口
export const userInfo = (obj) => https.post('/user/info', obj)
// 项目列表
export const boeuProjectPageList = (obj) => http.post('/boeu/project/pageList', obj)
// 文章列表
export const boeuArticlePageList = (obj) => http.post('/boeu/article/pageList', obj )
// 课程分页列表
export const boeuCourseListPageV2 = (obj) => http.post('/boeu/course/List/page/v2', obj )