brand.js 1.22 KB
/**
 * 品牌
 * @author: zxr<xiaoru.zhang@yoho.cn>
 * @date: 2016/7/8
 */

'use strict';
const brand = require('../models/brand');

const index = (req, res) => {
    let channel = req.query.brand || 1;
    let contentCode = 'd0149783b8dd2adaf083fd10556c39a9';

    brand.getListData(contentCode, channel).then((result) => {
        res.display('index', {
            module: 'brand',
            page: 'index',
            title: '品牌',
            brand: {
                nav: [
                    {
                        link: '//guang.yohobuy.com/index/index?type=0',
                        pathTitle: '首页',
                        name: 'MEN首页'
                    },
                    {
                        link: '',
                        pathTitle: '品牌',
                        name: 'Brand品牌'
                    }
                ],
                tabs: result.tabs,
                category: result.category
            },

            helpers: {
                // import component, path depends on your project
                pagination: require('../../../doraemon/components/pagination/pagination').createPagination
            }
        });
    });
};



module.exports = {
    index // 组件demo页
};