You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.7 KiB
PHP
38 lines
1.7 KiB
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Web Routes
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Here is where you can register web routes for your application. These
|
|
| routes are loaded by the RouteServiceProvider within a group which
|
|
| contains the "web" middleware group. Now create something great!
|
|
|
|
|
*/
|
|
|
|
Route::get('/', function () {
|
|
return view('welcome');
|
|
});
|
|
|
|
include_once public_path('../routes/web-zhao.php');
|
|
|
|
//微信登录授权获取code
|
|
Route::get('/wxLogin/{env}', function ($env) {
|
|
$redirectUrl = urlencode(config('app.globals.WxRedirectUrl'));
|
|
$url = "https://open.weixin.qq.com/connect/oauth2/authorize?appid=" . config('app.globals.WxAppid') . "&redirect_uri=" . $redirectUrl . "&response_type=code&scope=snsapi_base&state=" . $env . "#wechat_redirect";
|
|
return redirect($url);
|
|
});
|
|
//微信登录授权获取openid
|
|
Route::get('/wxGetCode', 'App\Http\Controllers\API\mH5\LoginController@wxGetCode');
|
|
Route::get('/test', 'App\Http\Controllers\TestController@DBtest');
|
|
|
|
Route::any('/payNotify', 'App\Http\Controllers\API\H5\PayController@Notify')->middleware('log');//支付回调
|
|
Route::post('/CheckUpTypeGetList', 'App\Http\Controllers\API\H5\CheckUpTypeController@GetList');//获取体检类型分类
|
|
Route::post('/GetComboType', 'App\Http\Controllers\API\H5\ComboController@GetComboType');//获取套餐类型
|
|
Route::post('/GetComboCrowd', 'App\Http\Controllers\API\H5\ComboController@GetComboCrowd');//获取套餐适用人群分类
|
|
Route::post('/GetAllItems', 'App\Http\Controllers\API\H5\ItemController@GetItems');//获取所有自选项目
|
|
|