mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-06 03:58:03 +08:00
修正 Qrc 支付问题
This commit is contained in:
parent
164c45e3a8
commit
15b1555d74
@ -64,14 +64,13 @@ class Order extends BasicWePay
|
|||||||
// 支付参数签名
|
// 支付参数签名
|
||||||
$time = strval(time());
|
$time = strval(time());
|
||||||
$appid = $this->config['appid'];
|
$appid = $this->config['appid'];
|
||||||
$prepayId = $result['prepay_id'];
|
|
||||||
$nonceStr = Tools::createNoncestr();
|
$nonceStr = Tools::createNoncestr();
|
||||||
if ($type === 'app') {
|
if ($type === 'app') {
|
||||||
$sign = $this->signBuild(join("\n", [$appid, $time, $nonceStr, $prepayId, '']));
|
$sign = $this->signBuild(join("\n", [$appid, $time, $nonceStr, $result['prepay_id'], '']));
|
||||||
return ['partnerId' => $this->config['mch_id'], 'prepayId' => $prepayId, 'package' => 'Sign=WXPay', 'nonceStr' => $nonceStr, 'timeStamp' => $time, 'sign' => $sign];
|
return ['partnerId' => $this->config['mch_id'], 'prepayId' => $result['prepay_id'], 'package' => 'Sign=WXPay', 'nonceStr' => $nonceStr, 'timeStamp' => $time, 'sign' => $sign];
|
||||||
} elseif ($type === 'jsapi') {
|
} elseif ($type === 'jsapi') {
|
||||||
$sign = $this->signBuild(join("\n", [$appid, $time, $nonceStr, "prepay_id={$prepayId}", '']));
|
$sign = $this->signBuild(join("\n", [$appid, $time, $nonceStr, "prepay_id={$result['prepay_id']}", '']));
|
||||||
return ['appId' => $appid, 'timeStamp' => $time, 'nonceStr' => $nonceStr, 'package' => "prepay_id={$prepayId}", 'signType' => 'RSA', 'paySign' => $sign];
|
return ['appId' => $appid, 'timeStamp' => $time, 'nonceStr' => $nonceStr, 'package' => "prepay_id={$result['prepay_id']}", 'signType' => 'RSA', 'paySign' => $sign];
|
||||||
} else {
|
} else {
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user