1234567891011121314151617181920212223 |
- <?php
- // +----------------------------------------------------------------------
- // | [ WE CAN DO IT MORE SIMPLE ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2018-2020 rights reserved.
- // +----------------------------------------------------------------------
- // | Author: TABLE ME
- // +----------------------------------------------------------------------
- // | Date: 2020-08-30 14:41
- // +----------------------------------------------------------------------
- use think\facade\Route;
- Route::group('bind', function () {
- //绑定登录
- Route::rule('system_bind','v1.bind/system_bind');
- //绑定登录数据
- Route::rule('system_bind_data','v1.bind/system_bind_data');
- //绑定成功
- Route::rule('bindsuccess','v1.bind/bindsuccess');
- })->middleware([
- ]);
|