|
@@ -7,12 +7,6 @@ Route::group(['domain' => env('QUICKAPP_DOMAIN'), 'namespace' => 'App\Http\Contr
|
|
|
Route::any('pay/aliback', 'Order\OrdersController@aliback');
|
|
|
Route::any('pay/wxapp/wait', 'Order\OrdersController@wait');
|
|
|
|
|
|
- //快应用派单链接格式
|
|
|
- Route::get('qyun/{id}', function(){
|
|
|
- dump('快应用推广链接');
|
|
|
- dump($_GET);
|
|
|
- })->where('id', '\d+');;
|
|
|
-
|
|
|
//测试
|
|
|
Route::any('testp', function(){
|
|
|
dump($_GET);
|
|
@@ -92,3 +86,14 @@ Route::group(['domain' => env('QUICKAPP_DOMAIN'), 'namespace' => 'App\Http\Contr
|
|
|
Route::get('shortcut/delete', 'User\ShortcutController@delete');
|
|
|
});
|
|
|
});
|
|
|
+
|
|
|
+//快应用派单推广
|
|
|
+Route::group(['domain' => env('QUICKAPP_PROMOTION_DOMAIN'), 'namespace' => 'App\Http\Controllers\QuickApp'], function () {
|
|
|
+
|
|
|
+ //快应用派单链接格式
|
|
|
+ Route::get('qyun/{id}', function () {
|
|
|
+ dump('快应用推广链接');
|
|
|
+ dump($_GET);
|
|
|
+ })->where('id', '\d+');
|
|
|
+
|
|
|
+});
|