feat: 🎸 简历列表弹窗
This commit is contained in:
@@ -25,3 +25,19 @@ export async function getInterviewsList(params) {
|
||||
params,
|
||||
});
|
||||
}
|
||||
|
||||
// 获取简历列表
|
||||
export async function getResumesList(params) {
|
||||
return request({
|
||||
url: `/api/resumes`,
|
||||
method: "GET",
|
||||
params: params,
|
||||
});
|
||||
}
|
||||
// 获取简历详情
|
||||
export async function getResumesDetail(id) {
|
||||
return request({
|
||||
url: `/api/resumes/${id}`,
|
||||
method: "GET",
|
||||
});
|
||||
}
|
||||
|
||||
@@ -5,7 +5,13 @@ import {
|
||||
getClassRanking,
|
||||
} from "./dashboard";
|
||||
import { getProjectsList } from "./projectLibrary";
|
||||
import { getJobsList, getJobsDetail, getInterviewsList } from "./companyJobs";
|
||||
import {
|
||||
getJobsList,
|
||||
getJobsDetail,
|
||||
getInterviewsList,
|
||||
getResumesList,
|
||||
getResumesDetail,
|
||||
} from "./companyJobs";
|
||||
import { getLoginStudentInfo } from "./global";
|
||||
import {
|
||||
getDashboardStatistics,
|
||||
@@ -13,7 +19,7 @@ import {
|
||||
getClassRank,
|
||||
getMyRanking,
|
||||
} from "./personalProfile";
|
||||
import { getResumesList, getResumesDetail } from "./resumeInterview";
|
||||
import {} from "./resumeInterview";
|
||||
|
||||
export {
|
||||
// 仪表盘相关
|
||||
|
||||
@@ -1,17 +1 @@
|
||||
import request from "@/utils/request";
|
||||
|
||||
// 获取简历列表
|
||||
export async function getResumesList(params) {
|
||||
return request({
|
||||
url: `/api/resumes`,
|
||||
method: "GET",
|
||||
params: params,
|
||||
});
|
||||
}
|
||||
// 获取简历详情
|
||||
export async function getResumesDetail(id) {
|
||||
return request({
|
||||
url: `/api/resumes/${id}`,
|
||||
method: "GET",
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user