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
f6817cb2743bb96d2446ff6a46859f928465d465
1 parent
7eed61f7
'guang详情页作者前10遍文章'
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
47 additions
and
1 deletions
apps/guang/controllers/index.js
apps/guang/models/guang-service.js
apps/guang/views/partial/right-side.hbs
public/scss/guang/_base.css
apps/guang/controllers/index.js
View file @
f6817cb
...
...
@@ -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
,
...
...
apps/guang/models/guang-service.js
View file @
f6817cb
...
...
@@ -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
,
}
});
});
}
/**
* 获取最新置顶文章
*/
...
...
apps/guang/views/partial/right-side.hbs
View file @
f6817cb
...
...
@@ -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"
>
...
...
public/scss/guang/_base.css
View file @
f6817cb
...
...
@@ -82,7 +82,7 @@
/* 热门标签 */
.hot
{
margin
-top
:
40px
;
margin
:
30px
0
;
.hot-title
{
color
:
#333
;
...
...
Please
register
or
login
to post a comment