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

赠送优惠券

... ... @@ -249,7 +249,8 @@ class OrderController extends HomeBaseController
'body' => '萨米户外',
'total_fee' => $order_amount
];
$this->success('微信支付', url('user/Center/orderDetail', ['oid' => $oid]), $this->wxPay($data));
echo json_encode(['msg' => '微信支付', 'data' => $this->wxPay($data), 'code' => 20000, 'url' => url('user/Center/orderDetail', ['oid' => $oid])]);
exit();
} elseif ($payment == 2) {
echo json_encode(['msg' => '支付宝支付', 'code' => 20000]);
} else {
... ... @@ -341,7 +342,7 @@ class OrderController extends HomeBaseController
private function wxPay($info)
{
$pay = new \Payment($info['attach'], session('openid'), $info['body'], $info['total_fee']);
$this->success('微信支付', '', $pay->pay());
return $pay->pay();
}
public function notify() {
... ...
... ... @@ -268,8 +268,11 @@ class CenterController extends HomeBaseController
echo json_encode(['data' => $return, 'code' => 20000]);
exit();
} else {
require_once EXTEND_PATH . '/WeChatCommon.php';
$wx = new \WeChatCommon();
return $this->fetch(':order_detail', [
'data' => $return
'data' => $return,
'js_sdk' => $wx->js_sdk()
]);
}
}
... ...
... ... @@ -14,6 +14,7 @@
<link rel="stylesheet" href="__TMPL__/static/css/paybalance.css" />
<link rel="stylesheet" href="__TMPL__/static/css/common.css"/>
<link rel="stylesheet" href="__TMPL__/static/css/payed.css" />
<script src="http://res2.wx.qq.com/open/js/jweixin-1.4.0.js"></script>
<style type="text/css">
.bot_reason {
display: none;
... ... @@ -300,7 +301,16 @@
success: function (data) {
if(data.code == 20000) {
window.location.reload();
wx.chooseWXPay({
timestamp: data.data.timeStamp, // 支付签名时间戳,注意微信jssdk中的所有使用timestamp字段均为小写。但最新版的支付后台生成签名使用的timeStamp字段名需大写其中的S字符
nonceStr: data.data.nonceStr, // 支付签名随机串,不长于 32 位
package: data.data.package, // 统一支付接口返回的prepay_id参数值,提交格式如:prepay_id=\*\*\*)
signType: data.data.signType, // 签名方式,默认为'SHA1',使用新版支付需传入'MD5'
paySign: data.data.paySign, // 支付签名
success: function (res) {
// 支付成功后的回调函数
}
});
}
}
})
... ... @@ -328,4 +338,18 @@
return false;
}
})
</script>
<script>
wx.config({
debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId: '{$js_sdk.appId}', // 必填,公众号的唯一标识
timestamp: '{$js_sdk.timestamp}', // 必填,生成签名的时间戳
nonceStr: '{$js_sdk.nonceStr}', // 必填,生成签名的随机串
signature: '{$js_sdk.signature}',// 必填,签名
jsApiList: [
'chooseWXPay'
] // 必填,需要使用的JS接口列表
});
</script>
\ No newline at end of file
... ...