作者 sgj
1 个管道 的构建 通过 耗费 2 秒

add the user charge

@@ -582,13 +582,14 @@ class OrderController extends HomeBaseController{ @@ -582,13 +582,14 @@ class OrderController extends HomeBaseController{
582 $result=\db('order')->insert($insert); 582 $result=\db('order')->insert($insert);
583 if ($result==1){ 583 if ($result==1){
584 $reutrn['order_no']=$insert['order_no']; 584 $reutrn['order_no']=$insert['order_no'];
585 - return $reutrn ; 585 + $this->apiResponse(200,'success',$reutrn);
586 }else{ 586 }else{
587 - $this->error(''); 587 + $this->apiResponse(400,'下单失败!');
588 } 588 }
589 } 589 }
590 590
591 591
  592 +
592 //支付回调接口 593 //支付回调接口
593 public function notify(){ 594 public function notify(){
594 $param = $this->request->param(); 595 $param = $this->request->param();