Browse Source

角色编辑-权限列表空值过滤,参数添加关联用户列表

zhongxiaoyu 3 năm trước cách đây
mục cha
commit
65c7e4a170

+ 2 - 2
src/views/authorityManagement/components/authorityRoleAdd.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: your name
  * @Date: 2021-11-29 16:31:31
- * @LastEditTime: 2022-03-16 15:14:59
+ * @LastEditTime: 2022-04-07 10:24:52
  * @LastEditors: your name
  * @Description: 新增/编辑角色
  * @FilePath: \Foshan4A2.0\src\views\authorityManagement\components\authorityRoleStatus.vue
@@ -176,7 +176,7 @@ export default {
       try {
         const datas = [];
         this.treeData.forEach((item) => {
-          datas.push(item.AuthList);
+          item.AuthList && datas.push(item.AuthList);
         });
         const res = await SaveRole({
           RoleName: this.form.name,

+ 6 - 3
src/views/authorityManagement/components/authorityRoleEdit.vue

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