|
@@ -8,10 +8,10 @@ Route::group(['domain' => env('QUICKAPP_DOMAIN'), 'namespace' => 'App\Http\Contr
|
|
|
Route::any('pay/wxapp/wait', 'Order\OrdersController@wait');
|
|
|
|
|
|
//快应用派单链接格式
|
|
|
- Route::get('qyun', function(){
|
|
|
+ Route::get('qyun/{id}', function(){
|
|
|
dump('快应用推广链接');
|
|
|
dump($_GET);
|
|
|
- });
|
|
|
+ })->where('id', '\d+');;
|
|
|
|
|
|
//测试
|
|
|
Route::any('testp', function(){
|