Browse Source

Merge branch 'bugfix_10/9' into debug

ziwen 1 year ago
parent
commit
a1ae7fac9d
1 changed files with 4 additions and 3 deletions
  1. 4 3
      controllers/data_manage/edb_info.go

+ 4 - 3
controllers/data_manage/edb_info.go

@@ -4264,7 +4264,7 @@ func (this *EdbInfoController) EdbChartAdminList() {
 		br.ErrMsg = "获取失败,Err:" + err.Error()
 		return
 	}
-
+	idList = []int{531}
 	fmt.Println("idlist:", idList)
 	systemAdminMap := make(map[int]*system.Admin)
 	departmentMap := make(map[string]string)
@@ -4328,10 +4328,11 @@ func (this *EdbInfoController) EdbChartAdminList() {
 		}
 	}
 
-	for _, groupList := range depList {
+	for i, groupList := range depList {
 		for k, v := range groupList.ChildrenList {
 			if v.RealName == "" {
-				groupList.ChildrenList = append(groupList.ChildrenList[:k], groupList.ChildrenList[k+1:]...)
+				newChildrenList := append(groupList.ChildrenList[:k], groupList.ChildrenList[k+1:]...)
+				depList[i].ChildrenList = newChildrenList
 			}
 		}
 	}