作者 董瑞恩
1 个管道 的构建 通过 耗费 0 秒

interface

... ... @@ -229,7 +229,6 @@ class OrderController extends HomeBaseController{
$price=$order['price'];//订单价格
$notify_url=url('order/notify','','',true);//回调地址
$out_trade_no=$order_no.$this->create_noncestr(4);
dump($out_trade_no);
$wxPay=new WeixinPay($openId,$out_trade_no,$body,$price,$notify_url);
$pay=$wxPay->pay();
if (isset($pay['package'])){
... ...
... ... @@ -103,6 +103,7 @@ class WeixinPay {
private function weixinapp() {
//统一下单接口
$unifiedorder = $this->unifiedorder();
dump($unifiedorder);
$parameters = array(
'appId' => $this->appid, //小程序ID
'timeStamp' => ''.time().'', //时间戳
... ...