提交 af3790d4 authored 作者: 王鹏飞's avatar 王鹏飞

chore(报名申请): 教育背景新增学校类型

上级 c916a72a
...@@ -29,10 +29,13 @@ export default function(_this) { ...@@ -29,10 +29,13 @@ export default function(_this) {
action: `${process.env.baseURL}/api/enrollment/v1.0/application-materials/${process.env.projectId}/put`, action: `${process.env.baseURL}/api/enrollment/v1.0/application-materials/${process.env.projectId}/put`,
beforeRequest(data) { beforeRequest(data) {
const educations = data.map(item => { const educations = data.map(item => {
return ['start_date', 'end_date', 'school_name_cn', 'major_cn', 'degree'].reduce((result, key) => { return ['start_date', 'end_date', 'school_type', 'school_name_cn', 'major_cn', 'degree'].reduce(
result[key] = item[key] (result, key) => {
return result result[key] = item[key]
}, {}) return result
},
{}
)
}) })
const basicInfo = { education_status: data[0].education_status } const basicInfo = { education_status: data[0].education_status }
return { basic_info: basicInfo, educations } return { basic_info: basicInfo, educations }
...@@ -80,6 +83,19 @@ export default function(_this) { ...@@ -80,6 +83,19 @@ export default function(_this) {
rules: [{ required: true, message: '请选择教育结束时间', trigger: 'blur' }], rules: [{ required: true, message: '请选择教育结束时间', trigger: 'blur' }],
append: '<p style="color:#606266">在读学生填写预计毕业时间</p>' append: '<p style="color:#606266">在读学生填写预计毕业时间</p>'
}, },
{
type: 'v-select',
values: [
{ value: '985院校' },
{ value: '211院校' },
{ value: '省重点' },
{ value: '普通本科' },
{ value: '专科院校' }
],
label: '学校类型',
model: 'school_type',
rules: [{ required: true, message: '请选择学校类型', trigger: 'change' }]
},
{ {
type: 'v-input', type: 'v-input',
label: '学校名称', label: '学校名称',
......
...@@ -264,6 +264,7 @@ export default { ...@@ -264,6 +264,7 @@ export default {
} }
}, },
{ label: '专业名称', code: 'major_cn' }, { label: '专业名称', code: 'major_cn' },
{ label: '学校类型', code: 'school_type' },
{ label: '学校名称', code: 'school_name_cn' }, { label: '学校名称', code: 'school_name_cn' },
{ label: '学历/学位', code: 'degree' } { label: '学历/学位', code: 'degree' }
] ]
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论