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.
51 lines
1.8 KiB
PHP
51 lines
1.8 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');
|
|
});
|
|
Route::get('/phpstorage/{path}', function ($path) {
|
|
// 拼接A服务器的实际路径
|
|
$storagePath = 'Z:/' . $path;
|
|
|
|
if (!file_exists($storagePath)) {
|
|
abort(404);
|
|
}
|
|
// 返回A服务器的图片
|
|
return response()->file($storagePath);
|
|
})->where('path', '.*');
|
|
|
|
//微信登录授权获取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::any('/test','App\Http\Controllers\TestController@DBtest' );
|
|
Route::any('/mm_test','App\Http\Controllers\TestController@mm_test' );
|
|
Route::any('/gongweitest', function () {
|
|
return view('gongweitest');
|
|
});
|
|
Route::any('/lqs_test','App\Http\Controllers\TestController@lqs_test' );
|
|
Route::any('/yuju_test', function () { //测试 语句
|
|
return view('yuju_test');
|
|
});
|
|
|
|
|
|
Route::any('/pljm','App\Http\Controllers\TestController@jiami' );
|
|
Route::any('/jiemage','App\Http\Controllers\TestController@jiemi_age' );
|