49 lines
1.3 KiB
JavaScript
49 lines
1.3 KiB
JavaScript
// 统一的API服务接口 - 基于当前认证用户
|
|
import {
|
|
getStudyRecordsProgress,
|
|
getMyTasks,
|
|
getClassRanking,
|
|
} from "./dashboard";
|
|
import { getProjectsList } from "./projectLibrary";
|
|
import {
|
|
getJobsList,
|
|
getJobsDetail,
|
|
getInterviewsList,
|
|
getResumesList,
|
|
getResumesDetail,
|
|
} from "./companyJobs";
|
|
import { getLoginStudentInfo } from "./global";
|
|
import {
|
|
getDashboardStatistics,
|
|
getLoginStudentProgress,
|
|
getClassRank,
|
|
getMyRanking,
|
|
} from "./personalProfile";
|
|
import {} from "./resumeInterview";
|
|
|
|
export {
|
|
// 仪表盘相关
|
|
getMyTasks, // 获取我的任务
|
|
getDashboardStatistics, // 获取当前学生仪表盘统计
|
|
getStudyRecordsProgress, // 获取学生的整体学习进度
|
|
|
|
// 排名相关
|
|
getClassRanking, // 获取当前学生班级排名
|
|
getMyRanking, // 获取当前学生详细排名信息
|
|
|
|
// 学生信息相关
|
|
getLoginStudentInfo, // 获取当前登录学生基本信息
|
|
getLoginStudentProgress, // 获取当前学生学习进度
|
|
getClassRank, // 获取班级排名(别名)
|
|
|
|
// 项目和作品相关
|
|
getProjectsList, // 获取项目列表
|
|
|
|
// 求职相关
|
|
getJobsList, // 获取岗位列表
|
|
getJobsDetail, // 岗位详情
|
|
getInterviewsList, // 获取面试列表
|
|
getResumesList, // 获取简历列表
|
|
getResumesDetail, // 获取简历详情
|
|
};
|