...
|
...
|
@@ -582,13 +582,14 @@ class OrderController extends HomeBaseController{ |
|
|
$result=\db('order')->insert($insert);
|
|
|
if ($result==1){
|
|
|
$reutrn['order_no']=$insert['order_no'];
|
|
|
return $reutrn ;
|
|
|
$this->apiResponse(200,'success',$reutrn);
|
|
|
}else{
|
|
|
$this->error('');
|
|
|
$this->apiResponse(400,'下单失败!');
|
|
|
}
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//支付回调接口
|
|
|
public function notify(){
|
|
|
$param = $this->request->param();
|
...
|
...
|
|