unknown 110ada9672 3
2023-08-29 17:19:11 +08:00

41 lines
2.0 KiB
PHP
Executable File

<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
use think\facade\Route;
Route::rule('courierLstData','Logistics/courierLogisticsList','get');
Route::rule('lstDetail','Logistics/courierLogisticsDetail','get');
Route::rule('lstDetailToUser','Logistics/userLogisticsDetail','get');
Route::rule('lstSet','Logistics/logisticsCreate','post');
Route::rule('takeGoods','Logistics/courierTakeGoods','post');
Route::rule('doneDelivery','Logistics/courierCompleteDelivery','post');
Route::rule('confirmReceipt','Logistics/userConfirmReceipt','post');
Route::rule('cancelOrder','Logistics/userCancelOrder','post');
Route::rule('courierData','Logistics/courierData','get');
Route::rule('hasCourier','Logistics/hasCourier','get');
/*-------------------------------------------------------------------------------------------*/
Route::rule('checkNum','Vehicle/checkNum','post');
Route::rule('vehicleRent','Vehicle/vehicleRent','post');
Route::rule('getCarLocal','Vehicle/getCarLocal','get');
Route::rule('getCarHistory','Vehicle/getCarHistory','get');
Route::rule('companyCarList','Vehicle/companyCarList','post');
Route::rule('companyCar','Vehicle/companyCar','post');
Route::rule('addVehicle','Vehicle/addVehicle','post');
Route::rule('getSelfCar','Vehicle/getSelfCar','post');
Route::rule('carInfo','Vehicle/carInfo','post');
/*-------------------------------------------------------------------------------------------*/
Route::rule('signContract','Contract/signContract','post');
Route::rule('updateContract','Contract/updateContract','post');