|
@@ -1,7 +1,7 @@
|
|
|
<!--
|
|
|
* @Author: your name
|
|
|
* @Date: 2021-11-29 16:31:31
|
|
|
- * @LastEditTime: 2022-03-30 14:56:53
|
|
|
+ * @LastEditTime: 2022-04-07 11:04:34
|
|
|
* @LastEditors: your name
|
|
|
* @Description: 新增/编辑角色
|
|
|
* @FilePath: \Foshan4A2.0\src\views\authorityManagement\components\authorityRoleStatus.vue
|
|
@@ -89,6 +89,7 @@ export default {
|
|
|
arrs: [],
|
|
|
checkedKeys: [],
|
|
|
RoleList: [],
|
|
|
+ RelationUsers: [],
|
|
|
radioCheck: [],
|
|
|
checkedBoxs: [],
|
|
|
defRoleId: [],
|
|
@@ -126,7 +127,7 @@ export default {
|
|
|
RoleId: id,
|
|
|
});
|
|
|
if (res.code === 0) {
|
|
|
- const { RoleName, RoleDesc, AuthList, RoleStatus, DefRoleList } =
|
|
|
+ const { RoleName, RoleDesc, AuthList, RoleStatus, DefRoleList, RelationUsers } =
|
|
|
res.returnData;
|
|
|
this.form.name = RoleName;
|
|
|
this.form.desc = RoleDesc;
|
|
@@ -147,6 +148,7 @@ export default {
|
|
|
this.radioCheck = DefRoleList;
|
|
|
this.roleAuths(DefRoleList[0].DefRoleId);
|
|
|
}
|
|
|
+ this.RelationUsers = RelationUsers
|
|
|
this.loading = false;
|
|
|
} else {
|
|
|
this.$message.error(res.message);
|
|
@@ -221,7 +223,7 @@ export default {
|
|
|
try {
|
|
|
const datas = [];
|
|
|
this.treeData.forEach((item) => {
|
|
|
- datas.push(item.AuthList);
|
|
|
+ item.AuthList && datas.push(item.AuthList);
|
|
|
});
|
|
|
const res = await EditRole({
|
|
|
RoleName: this.form.name,
|
|
@@ -230,6 +232,7 @@ export default {
|
|
|
AuthList: datas,
|
|
|
RoleStatus: this.radio,
|
|
|
RoleId: this.roleId,
|
|
|
+ RelationUsers: this.RelationUsers
|
|
|
});
|
|
|
if (res.code === 0) {
|
|
|
this.$message.success(res.message);
|