|
|
/**
|
|
|
* 资讯
|
|
|
* @author: zxr<xiaoru.zhang@yoho.cn>
|
|
|
* @date: 2016/7/4
|
|
|
*/
|
|
|
|
|
|
'use strict';
|
|
|
|
|
|
|
|
|
const index = (req, res) => {
|
|
|
var pageNum = req.query.page || 1;
|
|
|
|
|
|
res.render('index', {
|
|
|
module: 'editorial',
|
|
|
page: 'index',
|
|
|
title: '资讯',
|
|
|
editorial: {
|
|
|
nav: [
|
|
|
{
|
|
|
link: '//guang.yohobuy.com/index/index?type=0',
|
|
|
pathTitle: '首页',
|
|
|
name: 'MEN首页'
|
|
|
},
|
|
|
{
|
|
|
link: '/',
|
|
|
pathTitle: '资讯',
|
|
|
name: '咨询'
|
|
|
},
|
|
|
{
|
|
|
link: '/',
|
|
|
pathTitle: '资讯',
|
|
|
name: '咨询'
|
|
|
}
|
|
|
],
|
|
|
msgTypes: [
|
|
|
{
|
|
|
typeId: '0',
|
|
|
isActive: true,
|
|
|
type: '最新'
|
|
|
},
|
|
|
{
|
|
|
typeId: '1',
|
|
|
isActive: false,
|
|
|
type: '话题'
|
|
|
},
|
|
|
{
|
|
|
typeId: '2',
|
|
|
isActive: false,
|
|
|
type: '搭配'
|
|
|
},
|
|
|
{
|
|
|
typeId: '3',
|
|
|
isActive: false,
|
|
|
type: '潮人'
|
|
|
},
|
|
|
{
|
|
|
typeId: '4',
|
|
|
isActive: false,
|
|
|
type: '潮品'
|
|
|
}
|
|
|
|
|
|
],
|
|
|
mags: [
|
|
|
{
|
|
|
msgLeft: '潮品',
|
|
|
msgTitle: '很到位和范围的恢复文件和服务加热凤凰网二姐夫好无聊非互联网让发货文件符合我',
|
|
|
img: '',
|
|
|
msgContent: '鞋款定价回复即可老地方了服务可访问接待完了就服务来讲课费忘了空间访问量可放假',
|
|
|
time: '2016/05/25 19:36',
|
|
|
likeNum: '8'
|
|
|
},
|
|
|
{
|
|
|
msgLeft: '潮品',
|
|
|
msgTitle: '很到位和范围的恢复文件和服务加热凤凰网二姐夫好无聊非互联网让发货文件符合我',
|
|
|
img: '',
|
|
|
msgContent: '鞋款定价回复即可老地方了服务可访问接待完了就服务来讲课费忘了空间访问量可放假',
|
|
|
time: '2016/05/25 19:36',
|
|
|
likeNum: '8'
|
|
|
},
|
|
|
{
|
|
|
msgLeft: '潮品',
|
|
|
msgTitle: '很到位和范围的恢复文件和服务加热凤凰网二姐夫好无聊非互联网让发货文件符合我',
|
|
|
img: '',
|
|
|
msgContent: '鞋款定价回复即可老地方了服务可访问接待完了就服务来讲课费忘了空间访问量可放假',
|
|
|
time: '2016/05/25 19:36',
|
|
|
likeNum: '8'
|
|
|
}
|
|
|
]
|
|
|
},
|
|
|
helpers: {
|
|
|
// import component, path depends on your project
|
|
|
pagination: require('../../../doraemon/components/pagination/pagination').createPagination
|
|
|
}
|
|
|
|
|
|
});
|
|
|
};
|
|
|
|
|
|
module.exports = {
|
|
|
index // 组件demo页
|
|
|
}; |
...
|
...
|
|