fix
This commit is contained in:
@@ -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(() => {
|
||||
|
||||
Reference in New Issue
Block a user