This commit is contained in:
unknown 2023-09-01 14:07:13 +08:00
parent b2c9de3685
commit 5d85f2ae7f
2 changed files with 2 additions and 1 deletions

View File

@ -14,7 +14,7 @@ use think\response\Json;
*/
class VehicleController extends BaseApiController
{
public array $notNeedLogin = ['getCarLocal','getCarHistory','addSelfCar','updateVehicleRent'];
public array $notNeedLogin = ['getCarLocal','getCarHistory','addSelfCar','updateVehicleRent','cancelRent'];
//获取车辆当前位置
public function getCarLocal():Json {

View File

@ -29,6 +29,7 @@ Route::rule('getCarLocal','Vehicle/getCarLocal','get');
Route::rule('getCarHistory','Vehicle/getCarHistory','get');
Route::rule('addSelfCar','Vehicle/addSelfCar','post');
Route::rule('updateVehicleRent','Vehicle/updateVehicleRent','post');
Route::rule('cancelRent','Vehicle/cancelRent','post');
/*-------------------------------------------------------------------------------------------*/