tongshanglei il y a 2 ans
Parent
commit
de5f50107d
1 fichiers modifiés avec 7 ajouts et 1 suppressions
  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);
     }
 }