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