|
@@ -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)
|