• This project
    • Loading...
  • Sign in

fe / yohobuywap-node · 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
  • yohobuywap-node
  • apps
  • coupon
  • controllers
  • coupon.js
  • 分享模板
    022b3135
    by 张丽霞
    2016-06-01 12:17:59 +0800  
    Browse Files
coupon.js 194 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11
'use strict';

exports.index = (req, res) => {

    // res.render('coupon', {aa: 1});
    res.render('coupon', {
        module: 'coupon',
        page: 'index',
        devEnv: true
    });
};