搜索功能问题修复
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
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:
@@ -14,10 +14,11 @@ export type InterviewInviteProps = {
|
|||||||
jobId?: string;
|
jobId?: string;
|
||||||
companyId?: number;
|
companyId?: number;
|
||||||
jobName?: string;
|
jobName?: string;
|
||||||
|
applyId?: number;
|
||||||
};
|
};
|
||||||
|
|
||||||
const InterviewInvite: React.FC<InterviewInviteProps> = (props) => {
|
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 [interviewForm] = Form.useForm();
|
||||||
const [interviewMethod, setInterviewMethod] = useState<string>('online');
|
const [interviewMethod, setInterviewMethod] = useState<string>('online');
|
||||||
@@ -67,6 +68,7 @@ const InterviewInvite: React.FC<InterviewInviteProps> = (props) => {
|
|||||||
companyId: companyId,
|
companyId: companyId,
|
||||||
jobId: Number(jobId),
|
jobId: Number(jobId),
|
||||||
userId: userId,
|
userId: userId,
|
||||||
|
applyId: applyId,
|
||||||
jobName: jobName,
|
jobName: jobName,
|
||||||
interviewTime: values.interviewTime
|
interviewTime: values.interviewTime
|
||||||
? dayjs(values.interviewTime).format('YYYY-MM-DD HH:mm:ss')
|
? dayjs(values.interviewTime).format('YYYY-MM-DD HH:mm:ss')
|
||||||
|
|||||||
@@ -344,6 +344,7 @@ function ManagementList() {
|
|||||||
jobId={jobId}
|
jobId={jobId}
|
||||||
companyId={(jobInfo as any)?.companyId}
|
companyId={(jobInfo as any)?.companyId}
|
||||||
jobName={(jobInfo as any)?.jobTitle}
|
jobName={(jobInfo as any)?.jobTitle}
|
||||||
|
applyId={currentRow?.applyId ? Number(currentRow.applyId) : undefined}
|
||||||
onClose={(needRefresh) => {
|
onClose={(needRefresh) => {
|
||||||
setInviteVisible(false);
|
setInviteVisible(false);
|
||||||
setCurrentRow(undefined);
|
setCurrentRow(undefined);
|
||||||
|
|||||||
Reference in New Issue
Block a user