Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yohobuy-node
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
1
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
郝肖肖
7 years ago
Commit
2989f1a3ad92144ce0bb844c904488b56e5a622e
1 parent
f6817cb2
'逛底部无热门标签文章则取作者相关文章'
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
6 deletions
apps/guang/controllers/index.js
apps/guang/models/guang-service.js
apps/guang/controllers/index.js
View file @
2989f1a
...
...
@@ -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
,
...
...
apps/guang/models/guang-service.js
View file @
2989f1a
...
...
@@ -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
,
}
});
};
}));
});
}
...
...
Please
register
or
login
to post a comment