|
@@ -119,7 +119,15 @@
|
|
|
<th class="description-label">信息来源</th>
|
|
|
<td class="description-content">
|
|
|
<el-form-item prop="sourceFrom">
|
|
|
- <el-input size="mini" v-model.trim="form.sourceFrom" placeholder="请输入信息来源"/>
|
|
|
+ <el-select v-model.trim="form.sourceFrom"
|
|
|
+ clearable
|
|
|
+ filterable
|
|
|
+ placeholder="请选择信息来源">
|
|
|
+ <el-option label="BOSS"
|
|
|
+ value="BOSS"></el-option>
|
|
|
+ <el-option label="转介绍"
|
|
|
+ value="转介绍"></el-option>
|
|
|
+ </el-select>
|
|
|
</el-form-item>
|
|
|
</td>
|
|
|
<th class="description-label">其他综合情况</th>
|
|
@@ -444,13 +452,16 @@ export default {
|
|
|
} else {
|
|
|
this.form.educations = [{level: '', school: '', year: ''}]
|
|
|
}
|
|
|
+ this.form = {...this.form}
|
|
|
},
|
|
|
addEducation() {
|
|
|
- this.form.educations = [...this.educations, {level: '', school: '', year: ''}]
|
|
|
+ this.form.educations = [...this.form.educations, {level: '', school: '', year: ''}]
|
|
|
+ this.form = {...this.form}
|
|
|
},
|
|
|
removeEducation(index) {
|
|
|
this.form.educations[index] = null
|
|
|
- this.form.educations = this.educations.filter(item => !!item)
|
|
|
+ this.form.educations = this.form.educations.filter(item => !!item)
|
|
|
+ this.form = {...this.form}
|
|
|
},
|
|
|
onTypeSubmit() {
|
|
|
this.$refs['ruleForm'].validate(valid => {
|