瀏覽代碼

fix:pdf列表分类为空

zqbao 8 月之前
父節點
當前提交
d027b5a823
共有 1 個文件被更改,包括 9 次插入0 次删除
  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)