Files
teach_sys_Demo/src/services/index.js

22 lines
555 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";
import { getLoginStudentProgress } from "./personalProfile";
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-20 18:05:50 +08:00
};