修正微信二信码支付

This commit is contained in:
邹景立 2022-10-28 17:47:33 +08:00
parent 9f1687f08c
commit ae8d38b509

View File

@ -55,6 +55,10 @@ class WechatPaymentService extends PaymentService
if ($info['return_code'] === 'SUCCESS' && $info['result_code'] === 'SUCCESS') {
// 创建支付记录
$this->createPaymentAction($orderNo, $payTitle, $payAmount);
// 微信二维码支付
if ($this->type === static::PAYMENT_WECHAT_QRC) {
return $info;
}
// 返回支付参数
return $this->payment->jsapiParams($info['prepay_id']);
}