|
@@ -433,6 +433,7 @@ func GetReportDetail(userinfo user.UserInfo, reportId int) (reportDetail respons
|
|
reportItem.VideoSize = reportInfo.VideoSize
|
|
reportItem.VideoSize = reportInfo.VideoSize
|
|
reportItem.VideoPlaySeconds = reportInfo.VideoPlaySeconds
|
|
reportItem.VideoPlaySeconds = reportInfo.VideoPlaySeconds
|
|
reportItem.Author = reportInfo.Author
|
|
reportItem.Author = reportInfo.Author
|
|
|
|
+ reportItem.PptImgList = reportInfo.PptImgList //ppt转图片的图
|
|
// 分享背景图取二级分类配图, 二级没有配图时使用一级配图, 一级也没有使用默认图
|
|
// 分享背景图取二级分类配图, 二级没有配图时使用一级配图, 一级也没有使用默认图
|
|
reportItem.ShareBgImg = utils.DEFAULT_REPORT_SHARE_BG_IMG
|
|
reportItem.ShareBgImg = utils.DEFAULT_REPORT_SHARE_BG_IMG
|
|
secondClassify, e := classify.GetByClassifyId(reportInfo.ClassifyIdSecond)
|
|
secondClassify, e := classify.GetByClassifyId(reportInfo.ClassifyIdSecond)
|
|
@@ -495,7 +496,7 @@ func GetReportDetail(userinfo user.UserInfo, reportId int) (reportDetail respons
|
|
reportItem.Content = html.UnescapeString(reportInfo.Content)
|
|
reportItem.Content = html.UnescapeString(reportInfo.Content)
|
|
reportItem.VideoUrl = reportInfo.VideoUrl
|
|
reportItem.VideoUrl = reportInfo.VideoUrl
|
|
//查询点赞数
|
|
//查询点赞数
|
|
- likeNum,likeEnabled, _ = services.GetReportLikeByReportIdOldReportId(userinfo.UserID, reportInfo.Id, 0,0,0)
|
|
|
|
|
|
+ likeNum, likeEnabled, _ = services.GetReportLikeByReportIdOldReportId(userinfo.UserID, reportInfo.Id, 0, 0, 0)
|
|
}
|
|
}
|
|
|
|
|
|
//新增用户访问日志
|
|
//新增用户访问日志
|
|
@@ -859,7 +860,7 @@ func GetReportList(user user.UserInfo, keyWord string, classifyIdFirst, classify
|
|
if classifyParent.ClassifyName == "晨报" && productAuthOk {
|
|
if classifyParent.ClassifyName == "晨报" && productAuthOk {
|
|
// 查询当前晨报的所有音频
|
|
// 查询当前晨报的所有音频
|
|
if vList, ok := videoMap[reportInfo.Id]; ok {
|
|
if vList, ok := videoMap[reportInfo.Id]; ok {
|
|
- for _,vd := range vList {
|
|
|
|
|
|
+ for _, vd := range vList {
|
|
vd.VideoImg = reportItem.ReportImgUrl
|
|
vd.VideoImg = reportItem.ReportImgUrl
|
|
}
|
|
}
|
|
reportItem.VideoList = vList
|
|
reportItem.VideoList = vList
|
|
@@ -871,7 +872,7 @@ func GetReportList(user user.UserInfo, keyWord string, classifyIdFirst, classify
|
|
if wAuth {
|
|
if wAuth {
|
|
// 查询当前晨报的所有音频
|
|
// 查询当前晨报的所有音频
|
|
if vList, ok2 := videoMap[reportInfo.Id]; ok2 {
|
|
if vList, ok2 := videoMap[reportInfo.Id]; ok2 {
|
|
- for _,vd := range vList {
|
|
|
|
|
|
+ for _, vd := range vList {
|
|
vd.VideoImg = reportItem.ReportImgUrl
|
|
vd.VideoImg = reportItem.ReportImgUrl
|
|
}
|
|
}
|
|
reportItem.VideoList = vList
|
|
reportItem.VideoList = vList
|
|
@@ -1046,7 +1047,7 @@ func SearchReport(user user.UserInfo, keyWord string, pageIndex, pageSize int) (
|
|
temp.ClassifyNameSecond = reportItem.ClassifyNameSecond
|
|
temp.ClassifyNameSecond = reportItem.ClassifyNameSecond
|
|
temp.Title = reportItem.Title
|
|
temp.Title = reportItem.Title
|
|
temp.ContentSub = reportItem.BodyContent
|
|
temp.ContentSub = reportItem.BodyContent
|
|
- temp.PublishTime, err = time.ParseInLocation(utils.FormatDateTime, reportItem.PublishTime,time.Local)
|
|
|
|
|
|
+ temp.PublishTime, err = time.ParseInLocation(utils.FormatDateTime, reportItem.PublishTime, time.Local)
|
|
|
|
|
|
if len(v.Highlight["Title"]) > 0 {
|
|
if len(v.Highlight["Title"]) > 0 {
|
|
temp.Title = v.Highlight["Title"][0]
|
|
temp.Title = v.Highlight["Title"][0]
|