|
@@ -622,6 +622,9 @@ func GetReportDetail(userinfo user.UserInfo, reportId int) (reportDetail respons
|
|
|
reportDetail.LikeEnabled = likeEnabled
|
|
|
reportDetail.ReportShowType = int(firstClassify.ShowType)
|
|
|
reportDetail.ReportDetailShowType = int(minClassify.ReportDetailShowType)
|
|
|
+ if reportInfo.RaiReportId > 0 {
|
|
|
+ reportDetail.RaiReportUrl = fmt.Sprintf("%s/v2/articles/%d", global.CONFIG.RaiReportLib.ServerUrl, reportInfo.RaiReportId)
|
|
|
+ }
|
|
|
|
|
|
// 如果分类配置是列表展示,那么就移除content内容
|
|
|
if minClassify.ReportDetailShowType == 2 {
|
|
@@ -1345,6 +1348,7 @@ func SearchReport(user user.UserInfo, keyWord string, pageIndex, pageSize int) (
|
|
|
}
|
|
|
var reportList []*response.ReportCollectListItem
|
|
|
if searchResp.Hits != nil {
|
|
|
+ reportIds := make([]int, 0)
|
|
|
for _, v := range searchResp.Hits.Hits {
|
|
|
temp := new(response.ReportCollectListItem)
|
|
|
itemJson, tmpErr := v.Source.MarshalJSON()
|
|
@@ -1360,6 +1364,7 @@ func SearchReport(user user.UserInfo, keyWord string, pageIndex, pageSize int) (
|
|
|
err = errors.New("解析json出错")
|
|
|
return
|
|
|
}
|
|
|
+ reportIds = append(reportIds, reportItem.ReportId)
|
|
|
temp.ReportId = reportItem.ReportId
|
|
|
temp.ReportChapterId = reportItem.ReportChapterId
|
|
|
temp.ClassifyIdFirst = reportItem.ClassifyIdFirst
|
|
@@ -1393,6 +1398,22 @@ func SearchReport(user user.UserInfo, keyWord string, pageIndex, pageSize int) (
|
|
|
}
|
|
|
reportList = append(reportList, temp)
|
|
|
}
|
|
|
+
|
|
|
+ reportInfoList, tmpErr := report.GetByReportIds(reportIds)
|
|
|
+ if tmpErr != nil {
|
|
|
+ errMsg = tmpErr.Error()
|
|
|
+ err = errors.New("查询报告出错")
|
|
|
+ return
|
|
|
+ }
|
|
|
+ reportListMap := make(map[int]*report.Report)
|
|
|
+ for _, temp := range reportInfoList {
|
|
|
+ reportListMap[temp.Id] = temp
|
|
|
+ }
|
|
|
+ for _, reportDetail := range reportList {
|
|
|
+ if v, ok := reportListMap[reportDetail.ReportId]; ok {
|
|
|
+ reportDetail.RaiReportId = v.RaiReportId
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
ret = new(response.ReportSearchResp)
|
|
|
ret.List = reportList
|