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

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

@@ -217,6 +217,12 @@ class Station extends CatchController
         return CatchResponse::success($this->stationModel->getAllList());
     }
     public function getAllListForTrans(Request $request) {
-        return CatchResponse::success($this->stationModel->getAllList());
+        $list=$this->stationModel->getAllList();
+        $rows=[];
+        foreach($list as $val){
+            $item=['key'=>$val['mac'],'label'=>$val['name'] ];
+            $rows[]=$item;
+        }
+        return CatchResponse::success($rows);
     }
 }