Browse Source

部门获取bug处理

faster_develop
安虹睿 2 years ago
parent
commit
8f4ad76b62
  1. 4
      fe/PC/src/views/systemManage/userManage.vue

4
fe/PC/src/views/systemManage/userManage.vue

@ -463,7 +463,7 @@ export default {
this.options = res.items; this.options = res.items;
}); });
// //
departmentList({},'auth/department').then(res => { departmentList({MaxResultCount: 1000},'auth/department').then(res => {
this.departmentOptions = res.items; this.departmentOptions = res.items;
}) })
}, },
@ -596,7 +596,7 @@ export default {
this.concurrencyStamp = row.concurrencyStamp; this.concurrencyStamp = row.concurrencyStamp;
this.form.extraProperties.IsActive = row.extraProperties.IsActive; this.form.extraProperties.IsActive = row.extraProperties.IsActive;
this.form.extraProperties.DepartmentCode = row.extraProperties.DepartmentCode; this.form.extraProperties.DepartmentCode = row.extraProperties.DepartmentCode;
departmentList({},'auth/department').then(res => { departmentList({MaxResultCount: 1000},'auth/department').then(res => {
this.departmentOptions = res.items this.departmentOptions = res.items
}) })
usersroles().then((res) => { usersroles().then((res) => {

Loading…
Cancel
Save