|
@@ -6,6 +6,7 @@ import (
|
|
|
"eta/eta_mini_api/services"
|
|
|
"eta/eta_mini_api/utils"
|
|
|
"sort"
|
|
|
+ "strconv"
|
|
|
"time"
|
|
|
|
|
|
"github.com/rdlucklib/rdluck_tools/paging"
|
|
@@ -837,3 +838,69 @@ func (this *ReportNoAuthController) Detail() {
|
|
|
br.Ret = 200
|
|
|
br.Data = result.Data
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+func (this *ReportNoAuthController) Search() {
|
|
|
+ br := new(models.BaseResponse).Init()
|
|
|
+ defer func() {
|
|
|
+ this.Data["json"] = br
|
|
|
+ this.ServeJSON()
|
|
|
+ }()
|
|
|
+
|
|
|
+ keyWord := this.GetString("KeyWord")
|
|
|
+ pageSize, _ := this.GetInt("PageSize")
|
|
|
+ currentIndex, _ := this.GetInt("CurrentIndex")
|
|
|
+ if pageSize <= 0 {
|
|
|
+ pageSize = utils.PageSize30
|
|
|
+ }
|
|
|
+
|
|
|
+ if keyWord == "" {
|
|
|
+ br.Msg = "请输入关键字"
|
|
|
+ return
|
|
|
+ }
|
|
|
+
|
|
|
+ reports, total, err := services.SearchReportPush(keyWord, currentIndex, pageSize)
|
|
|
+ if err != nil {
|
|
|
+ br.Msg = "研报列表查询失败"
|
|
|
+ br.ErrMsg = "研报列表查询失败,系统异常,Err:" + err.Error()
|
|
|
+ return
|
|
|
+ }
|
|
|
+ resp := new(response.ReportSearchViewResp)
|
|
|
+ list := make([]*response.ReportSearchListView, 0)
|
|
|
+ for _, v := range reports {
|
|
|
+ tmpReport := &response.ReportSearchListView{
|
|
|
+ ReportId: v.ReportId,
|
|
|
+ ClassifyIdFirst: v.ClassifyIdFirst,
|
|
|
+ ClassifyNameFirst: v.ClassifyNameFirst,
|
|
|
+ ClassifyIdSecond: v.ClassifyIdSecond,
|
|
|
+ ClassifyNameSecond: v.ClassifyNameSecond,
|
|
|
+ ClassifyIdThird: v.ClassifyIdThird,
|
|
|
+ ClassifyNameThird: v.ClassifyNameThird,
|
|
|
+ PublishTime: v.PublishTime.Format(utils.FormatDate),
|
|
|
+ Title: v.Title,
|
|
|
+ Abstract: v.Abstract,
|
|
|
+ Stage: strconv.Itoa(v.Stage),
|
|
|
+ Author: v.Author,
|
|
|
+ ReportType: v.ReportType,
|
|
|
+ }
|
|
|
+ if v.PublishTime.IsZero() {
|
|
|
+ tmpReport.PublishTime = ""
|
|
|
+ }
|
|
|
+ list = append(list, tmpReport)
|
|
|
+ }
|
|
|
+
|
|
|
+ page := paging.GetPaging(currentIndex, pageSize, total)
|
|
|
+ resp.List = list
|
|
|
+ resp.Paging = page
|
|
|
+
|
|
|
+ br.Data = resp
|
|
|
+ br.Msg = "查询成功"
|
|
|
+ br.Ret = 200
|
|
|
+ br.Success = true
|
|
|
+}
|