Authored by 郝肖肖

'guang详情页作者前10遍文章'

... ... @@ -271,6 +271,13 @@ exports.detail = (req, res, next) => {
promises.push({});
}
// 获取作者前10遍文章
if (info.authorId) {
promises.push(req.ctx(guangModel).getFirstArticleList(gender, null, uid, udid, 1, '', info.authorId, 11, channel, true, id));
} else {
promises.push({});
}
let pathNav = req.ctx(guangModel).getPathNav(channel, info.title);
Promise.all(promises).then(ret => {
... ... @@ -318,6 +325,7 @@ exports.detail = (req, res, next) => {
relatedPost: (ret[10] && ret[10].length) ? ret[10] : false,
exRecos: ret[6],
ads: ret[7],
authorArticle: ret[11],
// 分享
shareImg: info.shareImg,
... ...
... ... @@ -323,6 +323,24 @@ module.exports = class extends global.yoho.BaseModel {
});
}
getFirstArticleList(...params) {
let id = params.pop();
return this.getArticleList(...params).then(rdata => {
return _.map(_.get(rdata, 'msgs', []), msgs => {
if (msgs.id === id) {
return {};
}
return {
url: msgs.url,
img: msgs.img,
title: msgs.title,
}
});
});
}
/**
* 获取最新置顶文章
*/
... ...
... ... @@ -27,6 +27,26 @@
</div>
{{/unless}}
{{#if authorArticle}}
<div class="ex-reco">
<h2 class="ex-reco-title">作者相关文章</h2>
<div id="ex-reco-list" class="ex-reco-list">
{{# authorArticle}}
{{#if url}}
<div class="ex-reco-item clearfix">
<a class="ex-reco-img" href="{{url}}" target="_blank">
<span class="bg-img" style="background-image:url({{image2 img}})"></span>
</a>
<a href="{{url}}" target="_blank">
<p class="ex-reco-context">{{title}}</p>
</a>
</div>
{{/if}}
{{/ authorArticle}}
</div>
</div>
{{/if}}
<div class="ads">
{{# ads}}
<a class="ad" href="{{url}}" target="_blank">
... ...
... ... @@ -82,7 +82,7 @@
/* 热门标签 */
.hot {
margin-top: 40px;
margin: 30px 0;
.hot-title {
color: #333;
... ...