Authored by 郝肖肖

'逛底部无热门标签文章则取作者相关文章'

... ... @@ -273,7 +273,9 @@ exports.detail = (req, res, next) => {
// 获取作者前10遍文章
if (info.authorId) {
promises.push(req.ctx(guangModel).getFirstArticleList(gender, null, uid, udid, 1, '', info.authorId, 11, channel, true, id));
promises.push(req.ctx(guangModel).getFirstArticleList(
gender, null, uid, udid, 1, '', info.authorId, 17, channel, true, id
));
} else {
promises.push({});
}
... ... @@ -322,10 +324,10 @@ exports.detail = (req, res, next) => {
brands: ret[5],
tag: info.tags,
relatedPost: (ret[10] && ret[10].length) ? ret[10] : false,
relatedPost: (ret[10] && ret[10].length) ? ret[10] : ret[11].slice(10, 16),
exRecos: ret[6],
ads: ret[7],
authorArticle: ret[11],
authorArticle: ret[11].slice(0, 10),
// 分享
shareImg: info.shareImg,
... ...
... ... @@ -325,9 +325,10 @@ 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 => {
return _.compact(_.map(_.get(rdata, 'msgs', []), msgs => {
if (msgs.id === id) {
return {};
}
... ... @@ -335,9 +336,10 @@ module.exports = class extends global.yoho.BaseModel {
return {
url: msgs.url,
img: msgs.img,
thumb: msgs.img,
title: msgs.title,
}
});
};
}));
});
}
... ...