feat: 🎸 企业内推岗位列表

This commit is contained in:
2025-08-20 18:05:50 +08:00
parent 3f590f21b2
commit f1a2a24939
9 changed files with 168 additions and 139 deletions

View File

@@ -0,0 +1,10 @@
import request from "@/utils/request";
// 获取企业内推岗位
export async function getJobsList(params) {
return request.get("/api/jobs", { params });
}
// 获取企业内推岗位面试
export async function getInterviewsList(params) {
return request.get("/api/interviews", { params });
}

6
src/services/global.js Normal file
View File

@@ -0,0 +1,6 @@
import request from "@/utils/request";
// 获取学生信息
export async function getCurrentStudent() {
return request.get("/api/students/me");
}

View File

@@ -3,5 +3,14 @@ import {
getLearningProgressSummary,
} from "./dashboard";
import { getProjectsList } from "./projectLibrary";
import { getJobsList, getInterviewsList } from "./companyJobs";
import { getCurrentStudent } from "./global";
export { getDashboardStatistics, getLearningProgressSummary, getProjectsList };
export {
getDashboardStatistics,
getLearningProgressSummary,
getProjectsList,
getJobsList,
getInterviewsList,
getCurrentStudent,
};