32 lines
1.5 KiB
PHP
Executable File
32 lines
1.5 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('userMessage','Logistics/sendMessageToApp','get');
|
|
|
|
|
|
/*-------------------------------------------------------------------------------------------*/
|
|
Route::rule('getCarInfo','Gps/getCarInfo','get');
|
|
Route::rule('getCarStatus','Gps/getCarStatus','get');
|
|
Route::rule('getCarHistory','Gps/getCarHistory','get');
|
|
|
|
Route::rule('test','Gps/test','get'); |