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.
30 lines
713 B
30 lines
713 B
<?php
|
|
use think\facade\Route;
|
|
/**
|
|
* @model index
|
|
* @author yangqi
|
|
* @create time 2019年11月25日23:09:59
|
|
*
|
|
*/
|
|
Route::get('/', 'index/index');
|
|
|
|
Route::post('login', 'login/index');
|
|
|
|
Route::post('appLogin', 'login/appLogin');
|
|
Route::post('phonelogin', 'login/phonelogin');
|
|
|
|
Route::post('iosLogin', 'login/iosLogin');
|
|
Route::any('getCode', 'login/getCode');
|
|
Route::any('test', 'login/test');
|
|
Route::any('checkToken', 'login/checkToken');
|
|
|
|
Route::any('webLogin', 'login/webLogin');
|
|
|
|
Route::post('getLoginProtocol', 'login/getLoginProtocol');
|
|
//page code
|
|
Route::get('getWebConfig', 'login/getWebConfig');
|
|
|
|
Route::get('getConfig', 'login/getConfig');
|
|
|
|
Route::get('incCoachOrderNum', 'login/incCoachOrderNum');
|
|
|
|
|