[update] 修改bug78215

This commit is contained in:
lideqin
2023-11-07 09:27:18 +08:00
parent 47b2530e12
commit 28fe14a8cf
2 changed files with 2 additions and 5 deletions
+2 -2
View File
@@ -313,7 +313,7 @@ export default {
}
} else if (val === StandardGradeClassify.ONE_LEVEL.value) {
// 选的是1级
this.formInline.auth_dept = this.standardGradeClassification.find(item => item.level + '' === '1').deptIds
// this.formInline.auth_dept = this.standardGradeClassification.find(item => item.level + '' === '1').deptIds
this.departSelectRange = this.standardGradeClassification.find(item => item.level + '' === '1').deptIds.split(',')
this.formInline = JSON.parse(JSON.stringify(this.formInline))
if (this.innerDisabledField.includes('auth_dept')) {
@@ -321,7 +321,7 @@ export default {
}
} else if (val === StandardGradeClassify.TWO_LEVEL.value) {
// 选的是2级
this.formInline.auth_dept = this.standardGradeClassification.find(item => item.level + '' === '2').deptIds
// this.formInline.auth_dept = this.standardGradeClassification.find(item => item.level + '' === '2').deptIds
this.departSelectRange = this.standardGradeClassification.find(item => item.level + '' === '2').deptIds.split(',')
this.formInline = JSON.parse(JSON.stringify(this.formInline))
if (this.innerDisabledField.includes('auth_dept')) {