index.js 511 Bytes
const model = require('../models');

exports.index = (req, res) => {
    const channelType = req.path.substring(1) || 'men';

    model.getContent(channelType).then(result => {

        // 设置当前频道
        res.cookie('_Channel', channelType, {
            domain: '.yohoblk.com'
        });

        req.yoho.channel = channelType;

        res.display('index', Object.assign({
            module: 'channel',
            page: 'home',
            dataPage: channelType
        }, result));
    });
};