request->get('lnt', ''); //纬度 $lat = Yii::$app->request->get('lat', ''); if (empty($lnt) || empty($lat)) { util::fail('经度或纬度不能为空'); } $shopId = ShopService::getDefaultShopId($this->merchant); $respond = ExpressService::getUserDistance($lnt, $lat, $shopId, $this->merchantExtend); util::success($respond); } }