mirror of
https://gitee.com/zoujingli/WeChatDeveloper.git
synced 2025-04-05 19:41:44 +08:00
[更新]修正微信App支持
This commit is contained in:
parent
365b012ec6
commit
63458d810f
@ -76,7 +76,7 @@ class Pay extends BasicWePay
|
||||
$pay = new Order($this->config->get());
|
||||
return $pay->qrcParams($product_id);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 查询订单
|
||||
* @param array $options
|
||||
|
@ -108,12 +108,12 @@ class Order extends BasicWePay
|
||||
public function appParams($prepayId)
|
||||
{
|
||||
$data = [
|
||||
'appid' => $this->config->get('appid'),
|
||||
'partnerid' => $this->config->get('mch_id'),
|
||||
'prepayid' => (string)$prepayId,
|
||||
'package' => 'Sign=WXPay',
|
||||
'time_stamp' => (string)time(),
|
||||
'nonce_str' => Tools::createNoncestr(),
|
||||
'appid' => $this->config->get('appid'),
|
||||
'partnerid' => $this->config->get('mch_id'),
|
||||
'prepayid' => (string)$prepayId,
|
||||
'package' => 'Sign=WXPay',
|
||||
'timestamp' => (string)time(),
|
||||
'noncestr' => Tools::createNoncestr(),
|
||||
];
|
||||
$data['sign'] = $this->getPaySign($data, 'MD5');
|
||||
return $data;
|
||||
|
Loading…
x
Reference in New Issue
Block a user