class codeDate { // 正确返回三要素 public function correct($code,$msg,$data=['']) { return json(['code'=>$code,'msg'=>$msg,'data'=>$data]); } // 错误返回三要素 public function error($code,$msg,$data=['']) { return json(['code'=>$code,'msg'=>$msg,'data'=>$data]); }