Эх сурвалжийг харах

fix:最新报告异常处理

zqbao 8 сар өмнө
parent
commit
f14a046c58
1 өөрчлөгдсөн 0 нэмэгдсэн , 9 устгасан
  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 {