This commit is contained in:
2026-06-25 16:07:45 +08:00
9 changed files with 246 additions and 5 deletions

View File

@@ -131,3 +131,11 @@ export async function getCmsInterviewDetail(id: string) {
method: 'GET',
});
}
/** 求职者端:更新面试邀约状态(接受/拒绝) */
export async function updateAppInterviewStatus(id: number, status: string) {
return request<API.Management.InterviewPageResult>(`/api/app/interview/status/${id}`, {
method: 'PUT',
data: { status },
});
}