API调整
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
// 此处是已经调试的api
|
||||
// 统一的API服务接口 - 基于当前认证用户
|
||||
import {
|
||||
getDashboardStatistics,
|
||||
getLearningProgressSummary,
|
||||
@@ -7,19 +7,29 @@ import {
|
||||
import { getProjectsList } from "./projectLibrary";
|
||||
import { getJobsList, getInterviewsList } from "./companyJobs";
|
||||
import { getLoginStudentInfo } from "./global";
|
||||
import { getLoginStudentProgress, getClassRank } from "./personalProfile";
|
||||
import { getLoginStudentProgress, getClassRank, getMyRanking } from "./personalProfile";
|
||||
import { getResumesList, getResumesDetail } from "./resumeInterview";
|
||||
|
||||
export {
|
||||
getDashboardStatistics,
|
||||
getLearningProgressSummary,
|
||||
getClassRanking,
|
||||
getProjectsList,
|
||||
getJobsList,
|
||||
getInterviewsList,
|
||||
getLoginStudentInfo,
|
||||
getLoginStudentProgress,
|
||||
getClassRank,
|
||||
getResumesList,
|
||||
getResumesDetail,
|
||||
// 仪表盘相关
|
||||
getDashboardStatistics, // 获取当前学生仪表盘统计
|
||||
getLearningProgressSummary, // 获取当前学生学习进度汇总
|
||||
|
||||
// 排名相关
|
||||
getClassRanking, // 获取当前学生班级排名
|
||||
getMyRanking, // 获取当前学生详细排名信息
|
||||
|
||||
// 学生信息相关
|
||||
getLoginStudentInfo, // 获取当前登录学生基本信息
|
||||
getLoginStudentProgress, // 获取当前学生学习进度
|
||||
getClassRank, // 获取班级排名(别名)
|
||||
|
||||
// 项目和作品相关
|
||||
getProjectsList, // 获取项目列表
|
||||
|
||||
// 求职相关
|
||||
getJobsList, // 获取岗位列表
|
||||
getInterviewsList, // 获取面试列表
|
||||
getResumesList, // 获取简历列表
|
||||
getResumesDetail, // 获取简历详情
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user