You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
330 B
14 lines
330 B
<?php
|
|
/**
|
|
* wechat路由
|
|
*/
|
|
|
|
use think\facade\Route;
|
|
|
|
Route::group('wechat', function() {
|
|
// 微信验证路由地址
|
|
Route::rule('Login/code2session', 'wechat.Login/code2session', 'post');
|
|
Route::rule('Login/login', 'wechat.Login/login', 'post');
|
|
Route::rule('Wechat/index', 'wechat.Wechat/index', 'get');
|
|
|
|
});
|
|
|