|
@@ -122,6 +122,20 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
+ <el-row :gutter="10">
|
|
|
+ <el-col :span="24">
|
|
|
+ <el-form-item label="生日" prop="birthday">
|
|
|
+ <el-input v-model="formQuery.birthday" placeholder="请输入出生日期" />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
+ <el-row :gutter="10">
|
|
|
+ <el-col :span="24">
|
|
|
+ <el-form-item label="居住地" prop="address">
|
|
|
+ <el-input v-model="formQuery.address" placeholder="请输入当前居住地址" />
|
|
|
+ </el-form-item>
|
|
|
+ </el-col>
|
|
|
+ </el-row>
|
|
|
<el-row>
|
|
|
<div class="m-title">联系方式</div>
|
|
|
</el-row>
|
|
@@ -356,6 +370,8 @@ const formQuery = ref({
|
|
|
address_en: undefined,
|
|
|
postal_code_zh: undefined,
|
|
|
postal_code_en: undefined,
|
|
|
+ birthday: undefined,
|
|
|
+ address: undefined,
|
|
|
})
|
|
|
const careerTrajectory = ref([{ company_name: null, position: null, current_date: null }])
|
|
|
|