tongshanglei 2 years ago
parent
commit
6f5147211b
1 changed files with 3 additions and 1 deletions
  1. 3 1
      catch/transport/controller/StuckPoint.php

+ 3 - 1
catch/transport/controller/StuckPoint.php

@@ -66,7 +66,9 @@ class StuckPoint extends CatchController
      */
     public function update(Request $request, $id) : \think\Response
     {
-        return CatchResponse::success($this->stuckPointModel->updateBy($id, $request->post()));
+        $params=$request->post();
+        $params['macs']=implode(',',$params['macs']);
+        return CatchResponse::success($this->stuckPointModel->updateBy($id, $params));
     }
     
     /**