Browse Source

Merge branch 'BI_Dashboard' into dm

zwxi 6 months ago
parent
commit
061d6528db
1 changed files with 2 additions and 2 deletions
  1. 2 2
      controllers/bi_dashboard.go

+ 2 - 2
controllers/bi_dashboard.go

@@ -608,7 +608,7 @@ func (this *BIDaShboardController) PublicList() {
 			Children:  make([]*bi_dashboard.RespPublicGroupListItem, 0),
 		}
 		if _, ok := publicDashboardClassifyIdMap[c.BiDashboardClassifyId]; ok {
-			for _, v := range publicAdminIdList {
+			for _, v := range adminIdList {
 				systemAdmin, ok := systemAdminMap[v]
 				if !ok {
 					continue
@@ -625,6 +625,7 @@ func (this *BIDaShboardController) PublicList() {
 					GroupId:   int64(systemAdmin.AdminId),
 					GroupName: systemAdmin.RealName,
 					AdminId:   systemAdmin.AdminId,
+					DashboardList: make([]*bi_dashboard.BiDashboard, 0),
 				}
 
 				for _, vv := range respGroupNameListItemList {
@@ -633,7 +634,6 @@ func (this *BIDaShboardController) PublicList() {
 						tmpItem.Children = append(tmpItem.Children, tmpRespGroupListItem)
 					}
 				}
-
 			}
 		}
 		resp = append(resp, tmpItem)