|
@@ -418,6 +418,7 @@
|
|
|
size="small"
|
|
|
plain
|
|
|
style="margin-top: 10px;margin-left: 0px;"
|
|
|
+ v-if="step.name!='资料收集' && step.name!='AI考察'"
|
|
|
@click="deleteProcessStep(step,index)"
|
|
|
>
|
|
|
删除
|
|
@@ -2961,12 +2962,13 @@ const confirmResumeCollection = () => {
|
|
|
type: 'resume_collection',
|
|
|
config: {
|
|
|
...resumeCollectionForm
|
|
|
- }
|
|
|
+ },
|
|
|
+ visible:true
|
|
|
};
|
|
|
|
|
|
// 添加到流程中
|
|
|
recruitmentProcess.splice(currentAddIndex.value, 0, newStep);
|
|
|
-
|
|
|
+ console.log(recruitmentProcess);
|
|
|
// 关闭弹窗
|
|
|
showResumeCollectionDialog.value = false;
|
|
|
|
|
@@ -3723,7 +3725,8 @@ const confirmCandidateQuestions = () => {
|
|
|
type: 'candidate_questions',
|
|
|
config: {
|
|
|
...candidateQuestionsForm
|
|
|
- }
|
|
|
+ },
|
|
|
+ visible:true
|
|
|
};
|
|
|
|
|
|
// 添加到流程中
|