Files
teach_sys_Demo/src/services/index.js

43 lines
1.3 KiB
JavaScript
Raw Normal View History

2025-08-21 22:21:17 +08:00
// 统一的API服务接口 - 基于当前认证用户
import {
getStudyRecordsProgress,
2025-08-22 10:32:57 +08:00
getMyTasks,
2025-08-20 21:35:14 +08:00
getClassRanking,
} from "./dashboard";
import { getProjectsList } from "./projectLibrary";
import { getJobsList, getJobsDetail, getInterviewsList } from "./companyJobs";
import { getLoginStudentInfo } from "./global";
2025-08-22 10:32:57 +08:00
import {
getDashboardStatistics,
getLoginStudentProgress,
getClassRank,
getMyRanking,
} from "./personalProfile";
2025-08-21 10:14:04 +08:00
import { getResumesList, getResumesDetail } from "./resumeInterview";
2025-08-20 18:05:50 +08:00
export {
2025-08-21 22:21:17 +08:00
// 仪表盘相关
2025-08-22 10:32:57 +08:00
getMyTasks, // 获取我的任务
getDashboardStatistics, // 获取当前学生仪表盘统计
getStudyRecordsProgress, // 获取学生的整体学习进度
2025-08-22 10:32:57 +08:00
2025-08-21 22:21:17 +08:00
// 排名相关
2025-08-22 10:32:57 +08:00
getClassRanking, // 获取当前学生班级排名
getMyRanking, // 获取当前学生详细排名信息
2025-08-21 22:21:17 +08:00
// 学生信息相关
2025-08-22 10:32:57 +08:00
getLoginStudentInfo, // 获取当前登录学生基本信息
getLoginStudentProgress, // 获取当前学生学习进度
getClassRank, // 获取班级排名(别名)
2025-08-21 22:21:17 +08:00
// 项目和作品相关
2025-08-22 10:32:57 +08:00
getProjectsList, // 获取项目列表
2025-08-21 22:21:17 +08:00
// 求职相关
2025-08-22 10:32:57 +08:00
getJobsList, // 获取岗位列表
getJobsDetail, // 岗位详情
2025-08-22 10:32:57 +08:00
getInterviewsList, // 获取面试列表
getResumesList, // 获取简历列表
getResumesDetail, // 获取简历详情
2025-08-20 18:05:50 +08:00
};