Index.php 486 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace app\index\controller;
  3. use app\common\controller\Frontend;
  4. use app\common\model\UserOrder;
  5. use app\service\UserOrderService;
  6. use think\helper\Str;
  7. class Index extends Frontend
  8. {
  9. protected $noNeedLogin = '*';
  10. protected $noNeedRight = '*';
  11. protected $layout = '';
  12. public function index()
  13. {
  14. return $this->view->fetch();
  15. }
  16. public function test(){
  17. //dd(tm()->getDistance(['117.362305',39.131073],[116.42705,39.9028]));
  18. }
  19. }