[更新]增加微信支付规则二维码

This commit is contained in:
Anyon 2018-05-02 10:22:46 +08:00
parent 68cc814ad3
commit 8a2030216b

View File

@ -97,6 +97,24 @@ class Pay
return $option;
}
/**
* 获取支付规则二维码
* @param string $product_id 商户定义的商品id 或者订单号
* @return string
*/
public function createParamsForRuleQrc($product_id)
{
$data = [
'appid' => $this->config->get('appid'),
'mch_id' => $this->config->get('mch_id'),
'time_stamp' => (string)time(),
'nonce_str' => Tools::createNoncestr(),
'product_id' => (string)$product_id,
];
$data['sign'] = $this->getPaySign($data, 'MD5');
return "weixin://wxpay/bizpayurl?" . http_build_query($data);
}
/**
* 查询订单
* @param array $options