Authored by lijing

bug

... ... @@ -123,7 +123,8 @@ const getPageData = (gender, sortId, uid, udid, page, tag, authorId, isApp, show
let artList = article.data.list.artList;
artList.forEach(art => {
build.push(guangProcess.formatArticle(art, true, isApp, showAuthor, uid));
//build.push(guangProcess.formatArticle(art, true, isApp, showAuthor, uid));
build.push(guangProcess.formatArticle(art, true, isApp, true, uid));
});
result.infos = build;
return result;
... ...
... ... @@ -31,7 +31,7 @@ router.post('/star/setFavorite', star.setFavorite); // 收藏文章
router.get('/plusstar', plusstar.index); // 潮流优选
router.get('/plusstar/resources-template', plusstar.resourcesTemplate); // 潮流优选首页-资源位
router.get('/', index.index); // 逛首页
router.get('/index/tags', index.tag); // 逛标签页
router.get('/tags/index', index.tag); // 逛标签页
router.get('/author/list', index.editor); // 编辑简介
... ...
... ... @@ -23,6 +23,8 @@ var setting = {
var $infos = $('#info-list');
require('../common');
info.initInfosEvt($infos);
if ($author.length > 0) {
... ...