zhaoke 3 жил өмнө
parent
commit
82a6efc40b

+ 3 - 3
src/components/permissionlist/index.vue

@@ -128,11 +128,11 @@ export default {
   methods: {
     Roleup (arr) {
       const datas = _.cloneDeep(arr)
-      const arrs = _.unionBy(datas, 'AuthId')
-      const newDatas = arrs.filter(item => item.AuthId)
+      const arrs = _.unionBy(datas, 'AppId')
+      const newDatas = arrs.filter(item => item.AppId)
       if (newDatas && newDatas.length) {
         this.dataLists = newDatas
-        const goodDatas = this.getData(newDatas[0].AuthId)
+        const goodDatas = this.getData(newDatas[0].AppId)
         this.RoleData = goodDatas
       } else {
         this.RoleData = []

+ 6 - 2
src/views/organizationManagement/components/organizationAdd.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: your name
  * @Date: 2021-11-29 11:26:07
- * @LastEditTime: 2022-02-14 15:49:05
+ * @LastEditTime: 2022-02-16 11:18:09
  * @LastEditors: Please set LastEditors
  * @Description:新增组织
  * @FilePath: \Foshan4A2.0\src\views\authorityManagement\components\authorityPower.vue
@@ -105,7 +105,8 @@ export default {
     dataList: {
       handler (val) {
         const arr = [val];
-        this.data = arr;
+        this.decompose(arr, this.AppId);
+        this.data = [this.dataObj];
         this.checkedKeys = [this.AppId];
       },
       deep: true,
@@ -132,6 +133,9 @@ export default {
     decompose (data, id) {
       for (let i = 0; i < data.length; i++) {
         if (data[i].OrganId == id) {
+          if (data[i].children && data[i].children.length) {
+            delete data[i].children;
+          }
           this.dataObj = data[i];
         } else if (data[i].children && data[i].children.length > 0) {
           this.decompose(data[i].children, id);

+ 6 - 1
src/views/organizationManagement/components/organizationEdit.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: your name
  * @Date: 2021-11-29 11:26:07
- * @LastEditTime: 2022-02-14 15:51:14
+ * @LastEditTime: 2022-02-16 11:19:16
  * @LastEditors: Please set LastEditors
  * @Description:新增组织
  * @FilePath: \Foshan4A2.0\src\views\authorityManagement\components\authorityPower.vue
@@ -113,6 +113,8 @@ export default {
       handler (val) {
         const arr = [val];
         this.data = arr;
+        this.decompose(arr, this.OrganUpid);
+        this.data = [this.dataObj];
         this.checkedKeys = [this.OrganUpid];
       },
       deep: true,
@@ -150,6 +152,9 @@ export default {
     decompose (data, id) {
       for (let i = 0; i < data.length; i++) {
         if (data[i].OrganId == id) {
+          if (data[i].children && data[i].children.length) {
+            delete data[i].children;
+          }
           this.dataObj = data[i];
         } else if (data[i].children && data[i].children.length > 0) {
           this.decompose(data[i].children, id);