Authored by 周少峰

Merge branch 'hotfix/shop'

... ... @@ -655,7 +655,7 @@ const getShopData = (shopId, channel, params, shopInfo) => {
for (let i = 0; i < 3; i++) {
trendList.push({
href: articleList[i].url,
href: helpers.urlFormat(`/${articleList[i].id}.html`, '', 'guang'),
src: helpers.getForceSourceUrl(articleList[i].src) +
'?imageView/1/w/{width}/h/{height}',
mainTitle: articleList[i].title,
... ... @@ -891,6 +891,10 @@ const getBaseShopData = (params, extra, channel, shopId) => {
pathTitle: shopName
});
}
// 临时删除seo信息
_.unset(resData, 'title');
_.unset(resData, 'keywords');
_.unset(resData, 'description');
return resData;
});
... ...