Express.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | gitee 开源项目:https://gitee.com/zoujingli/ThinkAdmin
  12. // | github开源项目:https://github.com/zoujingli/ThinkAdmin
  13. // +----------------------------------------------------------------------
  14. namespace app\store\controller\api;
  15. use library\Controller;
  16. /**
  17. * 快递查询结果
  18. * Class Express
  19. * @package app\store\controller\api
  20. */
  21. class Express extends Controller
  22. {
  23. /**
  24. * 物流查询结果
  25. */
  26. public function query()
  27. {
  28. $express_no = $this->request->post('express_no', '');
  29. $express_code = $this->request->post('express_code', '');
  30. $result = \library\tools\Express::query($express_code, $express_no);
  31. $this->success('获取物流查询结果!', $result);
  32. }
  33. }