浏览代码

标题高亮

xiexiaoyuan 2 年之前
父节点
当前提交
f537cf2c7f
共有 1 个文件被更改,包括 3 次插入4 次删除
  1. 3 4
      controller/english_report/english_report.go

+ 3 - 4
controller/english_report/english_report.go

@@ -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>"
 
 			}