2023-08-07 16:12:28 +08:00
|
|
|
<?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');
|
2023-08-09 15:50:16 +08:00
|
|
|
Route::rule('lstDetail','Logistics/courierLogisticsDetail','get');
|
|
|
|
Route::rule('lstDetailToUser','Logistics/userLogisticsDetail','get');
|
2023-08-07 16:12:28 +08:00
|
|
|
Route::rule('lstSet','Logistics/logisticsCreate','post');
|
|
|
|
|
|
|
|
Route::rule('takeGoods','Logistics/courierTakeGoods','post');
|
|
|
|
Route::rule('doneDelivery','Logistics/courierCompleteDelivery','post');
|
|
|
|
Route::rule('confirmReceipt','Logistics/userConfirmReceipt','post');
|
2023-08-10 14:58:10 +08:00
|
|
|
Route::rule('cancelOrder','Logistics/userCancelOrder','post');
|
|
|
|
|
2023-08-14 09:11:38 +08:00
|
|
|
Route::rule('courierData','Logistics/courierData','get');
|
2023-08-21 16:16:22 +08:00
|
|
|
Route::rule('hasCourier','Logistics/hasCourier','get');
|
2023-08-16 09:05:03 +08:00
|
|
|
|
|
|
|
|
2023-08-21 12:00:22 +08:00
|
|
|
/*-------------------------------------------------------------------------------------------*/
|
2023-08-26 11:13:14 +08:00
|
|
|
Route::rule('checkNum','Vehicle/checkNum','get');
|
2023-08-25 13:55:18 +08:00
|
|
|
Route::rule('vehicleRent','Vehicle/vehicleRent','post');
|
2023-08-24 17:50:08 +08:00
|
|
|
Route::rule('getCarLocal','Vehicle/getCarLocal','get');
|
2023-08-25 13:55:18 +08:00
|
|
|
Route::rule('getCarHistory','Vehicle/getCarHistory','get');
|
2023-08-26 11:13:14 +08:00
|
|
|
Route::rule('companyCarList','Vehicle/companyCarList','post');
|