dispatch.js
549 Bytes
/**
* 路由分发
*
* @author: Aiden Xu<aiden.xu@yoho.cn>
* @date: 2016/4/27
*/
module.exports = app => {
app.use('/', require('./apps/channel')); // 一级频道模块
app.use('/api', require('./apps/api')); // 各模块公有 API
app.use('/product', require('./apps/product')); // 商品模块
app.use('/home', require('./apps/home')); // 个人中心
app.use('/news', require('./apps/news')); // 资讯
// 组件示例
if (!app.locals.proEnv) {
app.use('/example', require('./apps/example'));
}
};