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