Browse Source

fix:pdf列表分类为空

zqbao 8 months ago
parent
commit
d027b5a823
1 changed files with 9 additions and 0 deletions
  1. 9 0
      controllers/report.go

+ 9 - 0
controllers/report.go

@@ -192,6 +192,15 @@ func (this *ReportController) PdfList() {
 			return
 		}
 		classifyList := resp.Data
+		if len(classifyList) == 0 {
+			resp := new(response.ReportPdfResp)
+			br.Msg = "查询成功"
+			br.Ret = 200
+			br.Success = true
+			br.Data = resp
+			return
+		}
+
 		condition += ` AND classify_id_second IN (` + utils.GetOrmReplaceHolder(len(classifyList)) + `)`
 		for _, item := range classifyList {
 			pars = append(pars, item.Id)