Browse Source

Merge branch 'bzq/dev' of eta_mini/eta_mini_api into master

鲍自强 8 months ago
parent
commit
8145bc9b79
1 changed files with 0 additions and 9 deletions
  1. 0 9
      controllers/report.go

+ 0 - 9
controllers/report.go

@@ -610,14 +610,6 @@ func (this *ReportController) RecentList() {
 		}
 		classifyIds = append(classifyIds, reportClassifyId)
 	}
-	if len(classifyIds) == 0 {
-		tmp := response.ReportResp[response.ReportList]{}
-		br.Data = tmp
-		br.Msg = "查询成功"
-		br.Ret = 200
-		br.Success = true
-		return
-	}
 
 	classifyResp, err := services.GetFirstChartPermission(classifyIds)
 	if err != nil {
@@ -628,7 +620,6 @@ func (this *ReportController) RecentList() {
 	if classifyResp.Ret != 200 {
 		br.Msg = classifyResp.Msg
 		br.ErrMsg = classifyResp.ErrMsg
-		return
 	}
 	classifyPermissionMap := make(map[int][]string)
 	for _, v := range classifyResp.Data {