Browse Source

fix:优化细节

zqbao 9 months ago
parent
commit
19a4303fb3
1 changed files with 2 additions and 2 deletions
  1. 2 2
      controllers/report.go

+ 2 - 2
controllers/report.go

@@ -66,7 +66,7 @@ func (this *ReportController) Detail() {
 // @Param   PageSize   query   int  true       "每页数据条数"
 // @Param   CurrentIndex   query   int  true       "当前页页码,从1开始"
 // @Param   RangeType   query   string  true       "范围类型,1-一天内,2-一周内,3-半年内"
-// @Success 200 {object} models.ReportDetailResp
+// @Success 200 {object} response.ReportList
 // @router /list [get]
 func (this *ReportController) List() {
 	br := new(models.BaseResponse).Init()
@@ -87,7 +87,7 @@ func (this *ReportController) List() {
 		return
 	}
 	if reports.Ret != 200 {
-		br.Msg = "研报列表查询失败"
+		br.Msg = reports.Msg
 		br.ErrMsg = reports.ErrMsg
 		return
 	}