|
@@ -196,14 +196,13 @@ func (er *EnglishReportController) FilterByEs(c *gin.Context) {
|
|
|
resp.FailMsg("报告搜索失败 解析出错", "报告搜索失败,Err:" + tmpErr.Error(), c)
|
|
|
return
|
|
|
}
|
|
|
+ if len(v.Highlight["Title"]) > 0 {
|
|
|
+ reportItem.Title = v.Highlight["Title"][0]
|
|
|
+ }
|
|
|
if reportItem.ReportId > 0 {
|
|
|
- if len(v.Highlight["Title"]) > 0 {
|
|
|
- reportItem.Title = v.Highlight["Title"][0]
|
|
|
- }
|
|
|
if len(v.Highlight["BodyContent"]) > 0 {
|
|
|
reportItem.ContentSub = v.Highlight["BodyContent"][0]
|
|
|
}
|
|
|
-
|
|
|
reportItem.ContentSub = "<div style=\"-webkit-line-clamp: 3;-webkit-box-orient: vertical;display: -webkit-box;overflow: hidden;text-overflow: ellipsis;\">" + reportItem.ContentSub + "</div>"
|
|
|
|
|
|
}
|