39 lines
1.9 KiB
PHP
Executable File
39 lines
1.9 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('getCarInfo','Gps/getCarInfo','get');
|
|
Route::rule('getCarStatus','Gps/getCarStatus','get');
|
|
Route::rule('getCarHistory','Gps/getCarHistory','get');
|
|
|
|
|
|
/*-------------------------------------------------------------------------------------------*/
|
|
Route::rule('getCompany','Vehicle/getCompany','get');
|
|
Route::rule('setContract','Vehicle/setContract','post');
|
|
Route::rule('getRentRecord','Vehicle/getRentRecord','get');
|
|
Route::rule('updateRentRecord','Vehicle/updateRentRecord','post');
|
|
Route::rule('getCompanyCars','Vehicle/getCompanyCars','get');
|
|
Route::rule('getCarLocal','Vehicle/getCarLocal','get'); |