Showing
1 changed file
with
33 additions
and
3 deletions
@@ -21,6 +21,34 @@ const channels = { | @@ -21,6 +21,34 @@ const channels = { | ||
21 | lifestyle: 4 | 21 | lifestyle: 4 |
22 | }; | 22 | }; |
23 | 23 | ||
24 | +const listTDK = { | ||
25 | + 0: { | ||
26 | + title: '最新潮流文章,逛最新潮流资讯-YOHO!BUY 有货网', | ||
27 | + keywords: '最新潮流文章,潮流资讯,逛潮流', | ||
28 | + description: '有货网每天提供全球最新最潮的潮流文章资讯,宣传潮流商品,潮流文化,潮流品牌等信息,想更多了解潮流最新资讯就来有货网!' | ||
29 | + }, // 最新 | ||
30 | + 1001: { | ||
31 | + title: '高人气潮流文章,逛人气潮流资讯-YOHO!BUY 有货网', | ||
32 | + keywords: '人气潮流文章,潮流人气,逛潮流人气', | ||
33 | + description: '有货网每天提供全球人气最高的潮流文章资讯,宣传潮流商品,潮流文化,潮流品牌等信息,想更多了解高人气潮流资讯就来有货网!' | ||
34 | + }, // 人气 | ||
35 | + 2: { | ||
36 | + title: '各种潮流搭配,逛潮流搭配资讯-YOHO!BUY 有货网', | ||
37 | + keywords: '搭配潮流文章,潮流搭配', | ||
38 | + description: '有货网每天提供全球最新最潮的潮流搭配文章资讯,宣传潮流商品,潮流文化,潮流品牌等信息,想更多了解学习潮流搭配资讯就来有货网!' | ||
39 | + }, // 搭配 | ||
40 | + 4: { | ||
41 | + title: '潮流品牌,逛各种潮流品牌资讯-YOHO!BUY 有货网', | ||
42 | + keywords: '逛潮品,潮流潮品,潮品资讯', | ||
43 | + description: '有货网每天提供全球最新最潮的潮流潮品文章资讯,宣传潮流商品,潮流文化,潮流品牌等信息,想更多了解学习潮流潮品资讯就来有货网!' | ||
44 | + }, // 潮品 | ||
45 | + 22: { | ||
46 | + title: '潮流视频,欣赏最新最好玩的潮流视频-YOHO!BUY 有货网', | ||
47 | + keywords: '潮流视频,看潮流', | ||
48 | + description: '有货网每天提供全球最新最潮最精彩的潮流视频,宣传潮流商品,潮流文化,潮流品牌等信息,想更多欣赏潮流视频就来有货网!' | ||
49 | + } // 视频 | ||
50 | +}; | ||
51 | + | ||
24 | /** | 52 | /** |
25 | * [编辑页面] | 53 | * [编辑页面] |
26 | */ | 54 | */ |
@@ -196,9 +224,9 @@ const index = (req, res, next) => { | @@ -196,9 +224,9 @@ const index = (req, res, next) => { | ||
196 | let responseData = { | 224 | let responseData = { |
197 | module: 'guang', | 225 | module: 'guang', |
198 | page: 'index', | 226 | page: 'index', |
199 | - title: '逛|逛潮流,逛购物,官方授权正品潮流购物中心|YOHO!BUY有货', | ||
200 | - keywords: '逛,逛潮流,逛购物', | ||
201 | - description: 'YOHO!BUY有货逛频道,来YOHO!玩潮流!潮搭大解析!年轻人潮流购物中心,中国潮流购物风向标,吴亦凡重磅代言!YOHO!BUY有货100%正品保证,支持货到付款。', | 227 | + title: '逛潮流,最新原创潮流资讯 |YOHO!BUY有货', |
228 | + keywords: '潮流资讯,潮流文章,有货潮流分享', | ||
229 | + description: '来有货玩潮流,潮流资讯大分享!年轻人潮流购物中心,了解潮流趋势、掌握潮流文化知识信息,尽在有货逛潮流!', | ||
202 | showFooterTab: footerModel.getUrlData('guang') | 230 | showFooterTab: footerModel.getUrlData('guang') |
203 | }; | 231 | }; |
204 | 232 | ||
@@ -209,6 +237,8 @@ const index = (req, res, next) => { | @@ -209,6 +237,8 @@ const index = (req, res, next) => { | ||
209 | gender: req.query.gender || req.query.channel && typeLib.gender[req.query.channel] || '1,3' | 237 | gender: req.query.gender || req.query.channel && typeLib.gender[req.query.channel] || '1,3' |
210 | }; | 238 | }; |
211 | 239 | ||
240 | + responseData = Object.assign(responseData, listTDK[param.type]); | ||
241 | + | ||
212 | req.ctx(IndexModel).getArticle(param).then(result => { | 242 | req.ctx(IndexModel).getArticle(param).then(result => { |
213 | if (result && result.guang && result.guang.infos) { | 243 | if (result && result.guang && result.guang.infos) { |
214 | if (!result.guang.infos.length) { | 244 | if (!result.guang.infos.length) { |
-
Please register or login to post a comment