作者 anyv
1 个管道 的构建 通过 耗费 0 秒

Merge branch 'master' of http://114.215.101.231:8099/anyv/xkeasy

@@ -212,9 +212,9 @@ class BirdController extends HomeBaseController @@ -212,9 +212,9 @@ class BirdController extends HomeBaseController
212 $jsonResult = $this->orderTracesSubByJson($indent['order_number'],$indent['logistic_code'],$address); 212 $jsonResult = $this->orderTracesSubByJson($indent['order_number'],$indent['logistic_code'],$address);
213 $result = json_decode($jsonResult,true); 213 $result = json_decode($jsonResult,true);
214 if(empty($result['Reason'])){ 214 if(empty($result['Reason'])){
215 - return dump($result);//订单轨迹 215 + return ['code'=>20000,'msg'=>'SUCCESS'];//订单轨迹
216 }else{ 216 }else{
217 - return $result['Reason']; 217 + return ['code'=>40000,'msg'=>$result['Reason']];
218 } 218 }
219 } 219 }
220 220
@@ -25,4 +25,9 @@ class LoadController extends HomeBaseController @@ -25,4 +25,9 @@ class LoadController extends HomeBaseController
25 } 25 }
26 } 26 }
27 } 27 }
  28 + public function notify(){
  29 + $param = $this->request->param();
  30 + cache($param);
  31 + echo 1;
  32 + }
28 } 33 }