作者 lihan
1 个管道 的构建 通过 耗费 0 秒

赠送优惠券

... ... @@ -341,7 +341,7 @@ class OrderController extends HomeBaseController
//微信支付
private function wxPay($info)
{
$pay = new \Payment($info['attach'], session('openid'), $info['body'], $info['total_fee']);
$pay = new \Payment($info['attach'], session('user.openid'), $info['body'], $info['total_fee']);
return $pay->pay();
}
... ...
... ... @@ -300,7 +300,8 @@
dataType:"JSON",
success: function (data) {
if(data.code == 20000) {
if($(".icon-xuanzhong2").attr('data-var') == 1) {
console.log(data);
wx.chooseWXPay({
timestamp: data.data.timeStamp, // 支付签名时间戳,注意微信jssdk中的所有使用timestamp字段均为小写。但最新版的支付后台生成签名使用的timeStamp字段名需大写其中的S字符
nonceStr: data.data.nonceStr, // 支付签名随机串,不长于 32 位
... ... @@ -311,6 +312,12 @@
// 支付成功后的回调函数
}
});
}else if($(".icon-xuanzhong2").attr('data-var') == 0) {
if(data.code == 20000) {
window.location.href=data.url;
}
}else {
}
}
})
... ...