This commit is contained in:
吴红兵
2026-03-07 12:35:45 +08:00
parent 271710e870
commit b997b3ba48
423 changed files with 79612 additions and 91574 deletions

View File

@@ -43,8 +43,8 @@
<el-select
v-model="scope.row.degreeOfEducation"
placeholder="请选择生源"
multiple
@change="updateMajor(scope.row,'degreeOfEducation')"
multiple
@change="updateMajor(scope.row, 'degreeOfEducation')"
>
<el-option v-for="item in degreeOfEducationList" :key="item.value" :label="item.label" :value="item.value"> </el-option>
</el-select>
@@ -127,14 +127,14 @@ const updateMajor = (row: any, type: any) => {
let params = {} as any;
params.id = row.id;
if (type == 'planStudentNum') {
params.planStudentNum=row.planStudentNum
params.planStudentNum = row.planStudentNum;
}
if (type == 'scoreLine') {
params.scoreLine = row.scoreLine;
}
if (type == 'degreeOfEducation') {
params.degreeOfEducation = row.degreeOfEducations;
}
if (type == 'scoreLine') {
params.scoreLine=row.scoreLine
}
if (type == 'degreeOfEducation') {
params.degreeOfEducation=row.degreeOfEducations
}
editQuickField(params)
.then(() => {