tongshanglei 2 년 전
부모
커밋
de5f50107d
1개의 변경된 파일7개의 추가작업 그리고 1개의 파일을 삭제
  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);
     }
 }