Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
yoho-blk
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
1
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
zhangxiaoru
9 years ago
Commit
94d4d38f297eb7eb713bccbd7e5753bbbe3d00d2
1 parent
fc57eaba
editorial
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
10 deletions
apps/brand/models/brand.js
apps/editorial/controllers/editorial.js
apps/editorial/models/editorial.js
public/scss/editorial/_detail.css
apps/brand/models/brand.js
View file @
94d4d38
...
...
@@ -78,7 +78,7 @@ const _processTabData = (list) => {
src
:
data
.
src
}
);
})
})
;
});
return
tabData
;
...
...
@@ -93,7 +93,7 @@ const _getResources = (contentCode) => {
return
serviceAPI
.
get
(
'operations/api/v5/resource/get'
,
{
content_code
:
contentCode
}).
then
((
result
)
=>
{
if
(
result
&&
result
.
code
===
200
)
{
//console.log(result)
//
console.log(result)
return
_processTabData
(
result
.
data
);
}
else
{
logger
.
error
(
'The data of brand resources return code is not 200'
);
...
...
apps/editorial/controllers/editorial.js
View file @
94d4d38
...
...
@@ -106,10 +106,10 @@ const list = (req, res) => {
link
=
'http://www.yohoblk.com/lifestyle'
;
}
if
(
tag
)
{
if
(
tag
)
{
res
.
cookie
(
'tag'
,
tag
,
{
domain
:
config
.
cookieDomain
});
});
}
editorialModel
.
getListData
(
appType
,
pageNum
,
limit
,
udid
,
gender
,
tag
,
authorId
).
then
((
result
)
=>
{
...
...
apps/editorial/models/editorial.js
View file @
94d4d38
...
...
@@ -95,7 +95,7 @@ const getListData = (appType, pageNum, limit, udid, gender, tag, authorId) => {
};
if
(
tag
)
{
param
.
tag
=
tag
;
param
.
tag
=
tag
;
}
if
(
authorId
)
{
...
...
@@ -495,12 +495,12 @@ const _getRelateBrand = (id, appType) => {
* @param id
* @returns {*}
*/
const
_getArticlePre
=
(
id
,
appType
,
gender
,
tag
)
=>
{
const
_getArticlePre
=
(
id
,
appType
,
gender
,
tag
)
=>
{
let
per
=
{
id
:
id
,
app_type
:
appType
,
gender
:
gender
}
}
;
if
(
tag
)
{
per
.
tag
=
tag
;
...
...
@@ -536,12 +536,12 @@ const _getArticleNext = (id, appType, gender, tag) => {
id
:
id
,
app_type
:
appType
,
gender
:
gender
}
}
;
if
(
tag
)
{
per
.
tag
=
tag
;
}
console
.
log
(
tag
)
console
.
log
(
tag
)
;
return
serviceAPI
.
get
(
'guang/api/*/article/getArticleNext'
,
per
).
then
((
result
)
=>
{
...
...
public/scss/editorial/_detail.css
View file @
94d4d38
...
...
@@ -85,7 +85,7 @@
overflow
:
hidden
;
display
:
block
;
img
{
img
{
max-width
:
930px
;
display
:
inherit
;
margin
:
auto
;
...
...
Please
register
or
login
to post a comment