|
|
@ -516,6 +516,16 @@ |
|
|
|
</el-option> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
<el-table-column |
|
|
|
label="受教育程度" |
|
|
|
align="center" |
|
|
|
show-overflow-tooltip |
|
|
|
min-width="100" |
|
|
|
> |
|
|
|
<template slot-scope="scope"> |
|
|
|
{{ educationYearsValue[scope.row.educationYears] }} |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
<el-form-item label="受教育年限" prop="educationYears"> |
|
|
|
<el-input |
|
|
|
type="number" |
|
|
@ -654,6 +664,17 @@ export default { |
|
|
|
return { |
|
|
|
tenantsListData: [], |
|
|
|
qzUrl: process.env.VUE_APP_API_QZURL, // 二维码路径 |
|
|
|
// 通过年限对象获取学历 |
|
|
|
educationYearsValue: { |
|
|
|
0: "文盲", |
|
|
|
6: "小学", |
|
|
|
9: "初中", |
|
|
|
12: "高中", |
|
|
|
15: "大专", |
|
|
|
16: "大学", |
|
|
|
19: "硕士研究生", |
|
|
|
22: "博士研究生", |
|
|
|
}, |
|
|
|
// 民族列表 |
|
|
|
ethnicityList: [ |
|
|
|
{ label: "汉族", value: "01" }, |
|
|
|