Files
teach_sys_Demo/src/services/index.js

26 lines
693 B
JavaScript
Raw Normal View History

// 此处是已经调试的api
import {
getDashboardStatistics,
getLearningProgressSummary,
2025-08-20 21:35:14 +08:00
getClassRanking,
} from "./dashboard";
import { getProjectsList } from "./projectLibrary";
2025-08-20 18:05:50 +08:00
import { getJobsList, getInterviewsList } from "./companyJobs";
import { getLoginStudentInfo } from "./global";
2025-08-21 10:14:04 +08:00
import { getLoginStudentProgress, getClassRank } from "./personalProfile";
import { getResumesList, getResumesDetail } from "./resumeInterview";
2025-08-20 18:05:50 +08:00
export {
getDashboardStatistics,
getLearningProgressSummary,
2025-08-20 21:35:14 +08:00
getClassRanking,
2025-08-20 18:05:50 +08:00
getProjectsList,
getJobsList,
getInterviewsList,
getLoginStudentInfo,
getLoginStudentProgress,
2025-08-21 10:14:04 +08:00
getClassRank,
getResumesList,
getResumesDetail,
2025-08-20 18:05:50 +08:00
};