This commit is contained in:
unknown 2023-09-05 18:50:58 +08:00
parent d2082f8e4a
commit f0227460f1

View File

@ -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() {
}
}