index.js 299 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 /** * 主页 * @author: Bi Kai<kai.bi@yoho.cn> * @date: 2016/05/09 */ 'use strict'; /** * 频道选择页 */ const component = { index: (req, res) => { res.render('index', { module: 'example', page: 'home' }); } }; module.exports = component;