Authored by zhangxiaoru

editorial

... ... @@ -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');
... ...
... ... @@ -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) => {
... ...
... ... @@ -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) => {
... ...
... ... @@ -85,7 +85,7 @@
overflow: hidden;
display: block;
img {
img {
max-width: 930px;
display: inherit;
margin: auto;
... ...