Commit 59be4e5c authored by 徐俊's avatar 徐俊

xujun

parent 4765975d
......@@ -4,7 +4,7 @@
<a-row>
<a-col :span="24" style="border-top: 0px; text-align: center">
<div class="main-title">
<span>申报人简历</span>
<span>申报人简历</span>
</div>
</a-col>
</a-row>
......@@ -246,7 +246,7 @@ export default {
formModel: {
educationList: [],
studyList: [],
workList: []
workList: [],
}
};
},
......@@ -440,7 +440,7 @@ export default {
},
deep: true,
immediate: true
}
},
}
};
</script>
......@@ -41,9 +41,9 @@ export default {
current: 10,
currSteps: 0,
stepsArray: [
{ status: "process", title: '申报人基本情况', showStatus: true },
{ status: "wait", title: '申报人简历', showStatus: false },
{ status: "wait", title: '申报人科研成绩', showStatus: false },
{ status: "process", title: '申报人基本情况', showStatus: true },
{ status: "wait", title: '申报人简历', showStatus: false },
{ status: "wait", title: '申报人科研成绩', showStatus: false },
{ status: "wait", title: '科学研究规划及团队人员名单', showStatus: false },
{ status: "wait", title: '经费预算及培养计划和目标', showStatus: false },
{ status: "wait", title: '附件', showStatus: false }
......
......@@ -341,6 +341,20 @@
</div>
<div v-if="stepsArray[1].showStatus">
<resume-edit :resumeList.sync="formData.resumeList" ref="talentResume" />
<a-row>
<a-col :span="24" style="border-top: 0px; text-align: center">
<div class="main-title">
<span>申报人才业务技术能力</span>
</div>
</a-col>
</a-row>
<a-row type="flex" class="row_center">
<a-col :span="24" class="bg-gray">
<a-form-model-item prop="technicalSkill" :rules="{ required: true, message: '*', trigger: 'blur',}">
<a-textarea placeholder="业务技术能力(限5000字)" v-model="formData.technicalSkill" :maxLength="5000" style="width: 80%; height: 160px; margin-top: 12px" />
</a-form-model-item>
</a-col>
</a-row>
</div>
<div v-if="stepsArray[2].showStatus">
</div>
......@@ -414,6 +428,7 @@ export default {
holdPost3: null,
mobile: null,
fax: null,
technicalSkill: null,
email: null,
resumeList: [],
membersList: [],
......@@ -607,7 +622,7 @@ export default {
}
break;
case 1:
obj = { id: null, resumeList: [] }
obj = { id: null, technicalSkill: null, resumeList: [] }
break;
case 2:
break;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment