pay.js
368 Bytes
/**
* 订单支付
* @author: TaoHuang
* @date: 2016/07/18
*/
"use strict";
const PayService = require('../models/pay');
const Pay = {
online: (req, res, next) => {
res.render('pay', Object.assign({
module: 'shopping',
page: 'pay',
title: '支付页面'
}, {
}));
}
};
module.exports = Pay;