diff --git a/app/Services/UserService.php b/app/Services/UserService.php index 17f3604..8fa73d7 100644 --- a/app/Services/UserService.php +++ b/app/Services/UserService.php @@ -614,6 +614,7 @@ class UserService extends BaseService } } }catch (\Exception $e){ + dump($e->getMessage()); return success(); } diff --git a/extend/Tencent/map/Location.php b/extend/Tencent/map/Location.php index d8b8838..b455569 100644 --- a/extend/Tencent/map/Location.php +++ b/extend/Tencent/map/Location.php @@ -66,7 +66,7 @@ class Location { $query = [ "key" => config("tencent_map.secret"), - "location" => $lon . "," . $lat, + "location" => $lat . "," . $lon, ]; $path = "https://apis.map.qq.com" . $this->getSign("/ws/geocoder/v1",$query);