• This project
    • Loading...
  • Sign in

fe / yohoblk-wap · Files

Go to a project

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • yohoblk-wap
  • apps
  • channel
  • controllers
  • index.js
  • 两个代码检查错误
    061eb3ca
    by 郭成尧
    2016-07-25 11:02:12 +0800  
    Browse Files
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;