common.php 243 B

12345678
  1. <?php
  2. // 应用公共文件
  3. function list_return($list, $count){
  4. $res = ['code'=>0,'data' => $list,'count'=>$count];
  5. $response = \think\Response::create($res, 'json');
  6. throw new \think\exception\HttpResponseException($response);
  7. }