搜索功能问题修复
Some checks failed
Node CI / build (14.x, macOS-latest) (push) Has been cancelled
Node CI / build (14.x, ubuntu-latest) (push) Has been cancelled
Node CI / build (14.x, windows-latest) (push) Has been cancelled
Node CI / build (16.x, macOS-latest) (push) Has been cancelled
Node CI / build (16.x, ubuntu-latest) (push) Has been cancelled
Node CI / build (16.x, windows-latest) (push) Has been cancelled
CodeQL / Analyze (javascript) (push) Has been cancelled
coverage CI / build (push) Has been cancelled
Node pnpm CI / build (16.x, macOS-latest) (push) Has been cancelled
Node pnpm CI / build (16.x, ubuntu-latest) (push) Has been cancelled
Node pnpm CI / build (16.x, windows-latest) (push) Has been cancelled

This commit is contained in:
冯辉
2026-06-28 15:09:01 +08:00
parent 312dd9ac9d
commit 4df17de061
2 changed files with 4 additions and 1 deletions

View File

@@ -14,10 +14,11 @@ export type InterviewInviteProps = {
jobId?: string;
companyId?: number;
jobName?: string;
applyId?: number;
};
const InterviewInvite: React.FC<InterviewInviteProps> = (props) => {
const { open, userId, jobId, companyId, jobName } = props;
const { open, userId, jobId, companyId, jobName, applyId } = props;
const [interviewForm] = Form.useForm();
const [interviewMethod, setInterviewMethod] = useState<string>('online');
@@ -67,6 +68,7 @@ const InterviewInvite: React.FC<InterviewInviteProps> = (props) => {
companyId: companyId,
jobId: Number(jobId),
userId: userId,
applyId: applyId,
jobName: jobName,
interviewTime: values.interviewTime
? dayjs(values.interviewTime).format('YYYY-MM-DD HH:mm:ss')

View File

@@ -344,6 +344,7 @@ function ManagementList() {
jobId={jobId}
companyId={(jobInfo as any)?.companyId}
jobName={(jobInfo as any)?.jobTitle}
applyId={currentRow?.applyId ? Number(currentRow.applyId) : undefined}
onClose={(needRefresh) => {
setInviteVisible(false);
setCurrentRow(undefined);