tongshanglei 2 years ago
parent
commit
e7a3649c89
1 changed files with 3 additions and 1 deletions
  1. 3 1
      catch/device/controller/Station.php

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

@@ -238,7 +238,9 @@ class Station extends CatchController
         return CatchResponse::success(['list'=>$this->stationModel->getAllList($start,$limit),'total'=>$total]);
     }
     public function getAllListForTrans(Request $request) {
-        $list=$this->stationModel->getAllList();
+        $start=0;
+        $limit=40000;
+        $list=$this->stationModel->getAllList($start,$limit);
         $rows=[];
         foreach($list as $val){
             $item=['key'=>$val['mac'],'label'=>$val['name'] ];