route.php 1.5 KB

123456789101112131415161718192021222324252627
  1. <?php
  2. use think\facade\Route;
  3. // +----------------------------------------------------------------------
  4. // | ThinkPHP [ WE CAN DO IT JUST THINK ]
  5. // +----------------------------------------------------------------------
  6. // | Copyright (c) 2006~2018 http://thinkphp.cn All rights reserved.
  7. // +----------------------------------------------------------------------
  8. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  9. // +----------------------------------------------------------------------
  10. // | Author: liu21st <liu21st@gmail.com>
  11. // +----------------------------------------------------------------------
  12. Route::post('basic-api/getToken', 'app\zskk\controller\Api@getToken');
  13. Route::post('api/postLabReport', 'app\zskk\controller\Patient@postLabReport');
  14. Route::post('api/postExamInfo', 'app\zskk\controller\Patient@postExamInfo');
  15. Route::post('api/postExamReport', 'app\zskk\controller\Patient@postExamReport');
  16. Route::post('api/delLabReport', 'app\zskk\controller\Api@delLabReport');
  17. Route::post('api/delExamReport', 'app\zskk\controller\Api@delExamReport');
  18. Route::post('api/getShareCheck', 'app\zskk\controller\Api@getShareCheck');
  19. Route::post('api/getRecogData', 'app\zskk\controller\Api@getRecogData');
  20. Route::post('api/saveRecogResult', 'app\zskk\controller\Api@saveRecogResult');
  21. Route::post('basic-api/getRecogToken', 'app\zskk\controller\Api@getRecogToken');
  22. Route::post('api/getRecogCheck', 'app\zskk\controller\Api@getRecogCheck');
  23. Route::post('basic-api/getShareToken', 'app\zskk\controller\Api@getShareToken');
  24. return [
  25. ];