Bladeren bron

Merge branch 'master' of http://120.26.64.82:3000/BFFE/Foshan4A4.0

zhaoke 3 jaren geleden
bovenliggende
commit
f9facfe557
1 gewijzigde bestanden met toevoegingen van 5 en 2 verwijderingen
  1. 5 2
      src/views/accountGroupManagement/components/accountGroupEdit.vue

+ 5 - 2
src/views/accountGroupManagement/components/accountGroupEdit.vue

@@ -116,6 +116,7 @@ export default {
       queryIds: [],
       currentSelectedRoleId: -1,
       checkedRoles: [],
+      RelationUsers: [],
       editForm: {
         name: '',
         desc: '',
@@ -180,7 +181,7 @@ export default {
           GroupId: this.GroupId
         })
         if (res.code === 0) {
-          const { GroupDesc, GroupName, Status, AuthList, RoleList } = res.returnData
+          const { GroupDesc, GroupName, Status, AuthList, RoleList, RelationUsers } = res.returnData
           this.editForm.name = GroupName
           this.editForm.desc = GroupDesc
           this.editForm.isUsed = Status
@@ -200,6 +201,7 @@ export default {
               this.permissionTreeChckedKeys.push(auth.AuthId)
               this.permissionTreeChckedTemp.push(auth)
             })
+          this.RelationUsers = RelationUsers
         } else {
           this.$message.error(res.message)
         }
@@ -318,7 +320,8 @@ export default {
         this.saveEditGroup({
           ...params,
           GroupId: this.GroupId,
-          Status: this.editForm.isUsed || 0
+          Status: this.editForm.isUsed || 0,
+          RelationUsers: this.RelationUsers
         })
       } else {
         this.saveAddGroup(params)