|
@@ -126,10 +126,8 @@ func (this *ReportController) List() {
|
|
|
br.Success = true
|
|
|
}
|
|
|
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
+
|
|
|
+
|
|
|
|
|
|
|
|
|
|
|
@@ -144,7 +142,7 @@ func (this *ReportController) DailyList() {
|
|
|
pageSize, _ := this.GetInt("PageSize")
|
|
|
currentIndex, _ := this.GetInt("CurrentIndex")
|
|
|
if pageSize <= 0 {
|
|
|
- pageSize = 3
|
|
|
+ pageSize = utils.PageSize20
|
|
|
}
|
|
|
|
|
|
reports, err := services.GetReportDailyList(currentIndex, pageSize)
|
|
@@ -160,6 +158,38 @@ func (this *ReportController) DailyList() {
|
|
|
br.Success = true
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+func (this *ReportController) RecentList() {
|
|
|
+ br := new(models.BaseResponse).Init()
|
|
|
+ defer func() {
|
|
|
+ this.Data["json"] = br
|
|
|
+ this.ServeJSON()
|
|
|
+ }()
|
|
|
+
|
|
|
+ pageSize, _ := this.GetInt("PageSize")
|
|
|
+ currentIndex, _ := this.GetInt("CurrentIndex")
|
|
|
+ if pageSize <= 0 {
|
|
|
+ pageSize = 3
|
|
|
+ }
|
|
|
+
|
|
|
+ reports, err := services.GetReportRecentList(currentIndex, pageSize)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "研报列表查询失败"
|
|
|
+ br.ErrMsg = "研报列表查询失败,系统异常,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ br.Data = reports.Data
|
|
|
+ br.Msg = "查询成功"
|
|
|
+ br.Ret = 200
|
|
|
+ br.Success = true
|
|
|
+}
|
|
|
+
|
|
|
|
|
|
|
|
|
|