20 lines
1.0 KiB
PHP
20 lines
1.0 KiB
PHP
|
<?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/logisticsDetail','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');
|