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

xujun

parent 4765975d
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<a-row> <a-row>
<a-col :span="24" style="border-top: 0px; text-align: center"> <a-col :span="24" style="border-top: 0px; text-align: center">
<div class="main-title"> <div class="main-title">
<span>申报人简历</span> <span>申报人简历</span>
</div> </div>
</a-col> </a-col>
</a-row> </a-row>
...@@ -246,7 +246,7 @@ export default { ...@@ -246,7 +246,7 @@ export default {
formModel: { formModel: {
educationList: [], educationList: [],
studyList: [], studyList: [],
workList: [] workList: [],
} }
}; };
}, },
...@@ -440,7 +440,7 @@ export default { ...@@ -440,7 +440,7 @@ export default {
}, },
deep: true, deep: true,
immediate: true immediate: true
} },
} }
}; };
</script> </script>
...@@ -41,9 +41,9 @@ export default { ...@@ -41,9 +41,9 @@ export default {
current: 10, current: 10,
currSteps: 0, currSteps: 0,
stepsArray: [ stepsArray: [
{ status: "process", title: '申报人基本情况', showStatus: true }, { 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 }, { 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 @@ ...@@ -341,6 +341,20 @@
</div> </div>
<div v-if="stepsArray[1].showStatus"> <div v-if="stepsArray[1].showStatus">
<resume-edit :resumeList.sync="formData.resumeList" ref="talentResume" /> <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>
<div v-if="stepsArray[2].showStatus"> <div v-if="stepsArray[2].showStatus">
</div> </div>
...@@ -414,6 +428,7 @@ export default { ...@@ -414,6 +428,7 @@ export default {
holdPost3: null, holdPost3: null,
mobile: null, mobile: null,
fax: null, fax: null,
technicalSkill: null,
email: null, email: null,
resumeList: [], resumeList: [],
membersList: [], membersList: [],
...@@ -607,7 +622,7 @@ export default { ...@@ -607,7 +622,7 @@ export default {
} }
break; break;
case 1: case 1:
obj = { id: null, resumeList: [] } obj = { id: null, technicalSkill: null, resumeList: [] }
break; break;
case 2: case 2:
break; 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