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

interface

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