tongshanglei 2 years ago
parent
commit
5aa4d17bc6
2 changed files with 7 additions and 2 deletions
  1. 5 1
      catch/device/controller/Station.php
  2. 2 1
      catch/device/model/Station.php

+ 5 - 1
catch/device/controller/Station.php

@@ -231,7 +231,11 @@ class Station extends CatchController
      */
     public function getAllList(Request $request) 
     {
-        return CatchResponse::success($this->stationModel->getAllList());
+        $params=$request->param();
+        $start=$params['start']?$params['start']*4000:0;
+        $limit=$params['limit']?:4000;
+        $total=$this->stationModel->count();
+        return CatchResponse::success(['list'=>$this->stationModel->getAllList($start,$limit),'total'=>$total]);
     }
     public function getAllListForTrans(Request $request) {
         $list=$this->stationModel->getAllList();

+ 2 - 1
catch/device/model/Station.php

@@ -70,12 +70,13 @@ class Station extends Model
             
         return $res;
     }
-    public function getAllList(){
+    public function getAllList($start=0,$limit=4000){
         $res = $this
             ->catchSearch()
             // ->field('mac,name,latitude,longitude,online_time')
             ->append(['is_online_text','is_online'])
             ->cache(120)
+            ->limit($start,$limit)
             ->select()
             ->each(function($item, $key)  {
                 $wgsLoc = \algorithm\Geometry::gcj02ToWgs84((float)$item['latitude'],(float)$item['longitude']);