diff --git a/app/api/controller/VehicleController.php b/app/api/controller/VehicleController.php index cd885d90..b1125e92 100644 --- a/app/api/controller/VehicleController.php +++ b/app/api/controller/VehicleController.php @@ -14,7 +14,7 @@ use think\response\Json; */ class VehicleController extends BaseApiController { - public array $notNeedLogin = ['getCarLocal','getCarHistory','addSelfCar','updateVehicleRent','cancelRent']; + public array $notNeedLogin = ['getCarLocal','getCarHistory','addSelfCar','updateVehicleRent','cancelRent','contractUpdate']; //获取车辆当前位置 public function getCarLocal():Json { @@ -144,4 +144,8 @@ class VehicleController extends BaseApiController return $this->fail('失败'); } } + + public function contractUpdate() { + + } }