Commit ba661454 authored by 刘斌's avatar 刘斌

fix: 增加学历

parent 8fbf21d3
......@@ -188,6 +188,12 @@
</van-cell-group>
<van-cell-group inset title="教育经历(全日制)">
<van-field
v-model="form.fulltimeEducation"
name="fulltimeEducation"
label="学历"
placeholder="请输入学历"
/>
<van-field
v-model="form.fulltimeSchool"
name="fulltimeSchool"
......@@ -218,6 +224,12 @@
</van-cell-group>
<van-cell-group inset title="教育经历(非全日制)">
<van-field
v-model="form.nonFulltimeEducation"
name="nonFulltimeEducation"
label="学历"
placeholder="请输入学历"
/>
<van-field
v-model="form.nonFulltimeSchool"
name="nonFulltimeSchool"
......@@ -349,10 +361,12 @@ const form = reactive({
workStartDisplay: '',
professionalTitle: '',
certificateStatus: '',
fulltimeEducation: '',
fulltimeSchool: '',
fulltimeMajor: '',
fulltimeGraduationDate: '',
fulltimeDegree: '',
nonFulltimeEducation: '',
nonFulltimeSchool: '',
nonFulltimeMajor: '',
nonFulltimeGraduationDate: '',
......@@ -552,10 +566,12 @@ async function onSubmit() {
workStartDate: form.workStartDisplay + '-01',
professionalTitle: form.professionalTitle,
certificateStatus: form.certificateStatus,
fulltimeEducation: form.fulltimeEducation,
fulltimeSchool: form.fulltimeSchool,
fulltimeMajor: form.fulltimeMajor,
fulltimeGraduationDate: form.fulltimeGraduationDate+ '-01',
fulltimeDegree: form.fulltimeDegree,
nonFulltimeEducation: form.nonFulltimeEducation,
nonFulltimeSchool: form.nonFulltimeSchool,
nonFulltimeMajor: form.nonFulltimeMajor,
nonFulltimeGraduationDate: form.nonFulltimeGraduationDate+ '-01',
......
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