/** * router of sub app channel * @author: Bi Kai<kai.bi@yoho.cn> * @date: 2016/05/09 */ 'use strict'; const express = require('express'); const cRoot = './controllers'; const channel = require(cRoot); const cate = require(cRoot + '/cate'); const router = express.Router(); // eslint-disable-line router.get('/', channel.switchChannel, channel.index); // 首页,频道选择页 router.get('/boys', channel.switchChannel, channel.boys); router.get('/girls', channel.switchChannel, channel.girls); router.get('/kids', channel.switchChannel, channel.kids); router.get('/lifestyle', channel.switchChannel, channel.lifestyle); router.get('/channel/bottomBanner', channel.bottomBanner); router.get('/cate', cate.index); module.exports = router;