• 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
  • cart
  • controllers
  • ticketsConfirm.js
  • 门票确认
    53a5aabd
    by lijing
    2017-03-15 10:20:07 +0800  
    Browse Files
ticketsConfirm.js 416 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 21 22
'use strict';

const index = (req, res ,next) => {
    let headerData = headerModel.setNav({
        navTitle: '确认订单'
    });

    let responseData = {
        pageHeader: headerData,
        module: 'cart',
        page: 'index-editor',
        title: '确认订单',
        pageFooter: true,
        localCss: true
    };

    res.render('ticketsConfirm', responseData);
}

module.exports = {
    index
};