Authored by 郭成尧

fast-pay

@@ -89,6 +89,26 @@ exports.orderEnsure = (req, res, next) => { @@ -89,6 +89,26 @@ exports.orderEnsure = (req, res, next) => {
89 }; 89 };
90 90
91 /** 91 /**
  92 + * 快速结算,商品不进购物车
  93 + */
  94 +exports.fastPay = (req, res, next) => {
  95 + let headerData = headerModel.setNav({
  96 + navTitle: '确认订单',
  97 + navBtn: false
  98 + });
  99 +
  100 + let viewData = {
  101 + pageHeader: headerData,
  102 + module: 'cart',
  103 + page: 'order-ensure',
  104 + width750: true,
  105 + title: '确认订单'
  106 + };
  107 +
  108 + res.render('order-ensure', viewData);
  109 +};
  110 +
  111 +/**
92 * 下单流程 选择优惠券 112 * 下单流程 选择优惠券
93 */ 113 */
94 exports.selectCoupon = (req, res) => { 114 exports.selectCoupon = (req, res) => {
@@ -30,7 +30,7 @@ router.get('/index/new/pay', authMW, payController.pay);// 统一支付 URL, @@ -30,7 +30,7 @@ router.get('/index/new/pay', authMW, payController.pay);// 统一支付 URL,
30 router.get('/index/new/pay/alipayresult', authMW, payController.payAli);// 支付宝付款支付成功 30 router.get('/index/new/pay/alipayresult', authMW, payController.payAli);// 支付宝付款支付成功
31 31
32 router.get('/index/new/orderEnsure', authMW, order.orderEnsure); // 订单结算 32 router.get('/index/new/orderEnsure', authMW, order.orderEnsure); // 订单结算
33 -router.get('/index/new/fast', authMW, order.orderEnsure); // 快速结算 33 +router.get('/index/new/fast', authMW, order.fastPay); // 快速结算订单提交
34 router.get('/index/new/selectCoupon', authMW, order.selectCoupon); // 选择优惠券 页面 34 router.get('/index/new/selectCoupon', authMW, order.selectCoupon); // 选择优惠券 页面
35 router.get('/index/new/couponList', order.couponList); // [ajax]获取优惠券列表 35 router.get('/index/new/couponList', order.couponList); // [ajax]获取优惠券列表
36 router.post('/index/new/couponSearch', order.couponSearch); // [ajax]购物车输入优惠券码使用优惠券 36 router.post('/index/new/couponSearch', order.couponSearch); // [ajax]购物车输入优惠券码使用优惠券