From b2c9de36855b3acb6a9a0e40d74a14e5c11cdad5 Mon Sep 17 00:00:00 2001 From: unknown <736250432@qq.com> Date: Fri, 1 Sep 2023 13:29:11 +0800 Subject: [PATCH] update --- app/api/controller/VehicleController.php | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/app/api/controller/VehicleController.php b/app/api/controller/VehicleController.php index 14ae8fc3..b736411b 100644 --- a/app/api/controller/VehicleController.php +++ b/app/api/controller/VehicleController.php @@ -121,4 +121,28 @@ class VehicleController extends BaseApiController return $this->fail('失败'); } } + + public function cancelRent() { + //获取参数 + $params = $this->request->post(['car_id','status']); + if(empty($params['car_id']) || empty($params['status'])){ + return $this->fail('参数错误'); + } + //更新 + $vehicleRent = VehicleRent::where('car_id',$params['car_id'])->find(); + if(empty($vehicleRent)){ + return $this->fail('数据错误'); + } + $result1 = VehicleRent::where('car_id',$params['car_id'])->update([ + 'status' => $params['status'], + ]); + $result2 = Vehicle::where('id',$params['car_id'])->update([ + 'status' => 3, + ]); + if($result1 && $result2){ + return $this->success('请求成功'); + }else{ + return $this->fail('失败'); + } + } }