bind.php 830 B

1234567891011121314151617181920212223
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | [ WE CAN DO IT MORE SIMPLE ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2018-2020 rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Author: TABLE ME
  8. // +----------------------------------------------------------------------
  9. // | Date: 2020-08-30 14:41
  10. // +----------------------------------------------------------------------
  11. use think\facade\Route;
  12. Route::group('bind', function () {
  13. //绑定登录
  14. Route::rule('system_bind','v1.bind/system_bind');
  15. //绑定登录数据
  16. Route::rule('system_bind_data','v1.bind/system_bind_data');
  17. //绑定成功
  18. Route::rule('bindsuccess','v1.bind/bindsuccess');
  19. })->middleware([
  20. ]);