Ver código fonte

禁用权限后禁用下级权限

zhongxiaoyu 3 anos atrás
pai
commit
129aec0b9a

+ 35 - 1
src/views/authorityManagement/components/authorityHome.vue

@@ -1,7 +1,7 @@
 <!--
  * @Author: your name
  * @Date: 2021-11-29 09:27:43
- * @LastEditTime: 2022-03-16 12:01:30
+ * @LastEditTime: 2022-03-16 16:01:54
  * @LastEditors: your name
  * @Description: 权限管理
  * @FilePath: \Foshan4A2.0\src\views\authorityManagement\components\home.vue
@@ -294,6 +294,16 @@ export default {
       }
       return arr
     },
+    // 更改下级状态
+    setChildrenDisabled(id) {
+      this.dataArr.forEach(data => {
+        if (data.UpAuthId === id) {
+          data.Status = 0
+          data.flag = false
+          this.setChildrenDisabled(data.AuthId)
+        }
+      })
+    },
     //渲染节点
     // renderContent (h, data) {
     //   return (
@@ -349,6 +359,30 @@ export default {
           } else {
             this.childrenData[index].Status = val
           }
+          if (val) {
+            this.dataArr.find(data => {
+              if (data.AuthId === id) {
+                data.Status = 1
+                data.flag = true
+                return true
+              }
+            })
+          } else {
+            this.dataArr.find(data => {
+              if (data.AuthId === id) {
+                data.Status = 0
+                data.flag = false
+                return true
+              }
+            })
+            if (!isChildren) {
+              this.childrenData.forEach(data => {
+                data.Status = 0
+                data.flag = false
+              })
+            }
+            this.setChildrenDisabled(id)
+          }
           //this.getAuthTree()
         } else {
           this.$message.error(res.message)