From 9ba73d596d129b8e278f34d2a854df5febbb35c8 Mon Sep 17 00:00:00 2001 From: luofei <604446095@qq.com> Date: Wed, 24 Jan 2024 10:14:09 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B0=83=E6=95=B4=E6=B4=BB=E5=8A=A8=E5=95=86?= =?UTF-8?q?=E5=93=81=E5=8C=BA=E5=9F=9F=E6=9F=A5=E8=AF=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/common/dao/store/StoreActivityDao.php | 24 +++++++++++++++++++ .../model/store/product/CloudProduct.php | 6 +++++ app/common/model/system/merchant/Merchant.php | 6 +++++ app/controller/api/store/StoreActivity.php | 12 ++++++++++ route/api.php | 1 + 5 files changed, 49 insertions(+) diff --git a/app/common/dao/store/StoreActivityDao.php b/app/common/dao/store/StoreActivityDao.php index 7b021132..af7f481a 100644 --- a/app/common/dao/store/StoreActivityDao.php +++ b/app/common/dao/store/StoreActivityDao.php @@ -19,6 +19,7 @@ use app\common\model\store\product\CloudProduct; use app\common\model\store\StoreActivity; use app\common\model\store\StoreActivityOrderProduct; use app\common\repositories\store\product\SpuRepository; +use think\db\Query; use think\exception\ValidateException; use think\facade\Db; @@ -139,4 +140,27 @@ class StoreActivityDao extends BaseDao } } + /** + * 根据活动获取对应的镇街 + * @param $activityId + * @return array + */ + public function district($activityId) + { + $merchants = CloudProduct::with(['merchant' => function (Query $query) { + $query->with(['street' => function (Query $query) { + $query->field('street_code,street_name'); + }])->field('mer_id,street_id'); + }])->where('activity_id', $activityId)->field('mer_id')->group('mer_id')->select()->toArray(); + $result = []; + foreach ($merchants as $merchant) { + $streetCode = $merchant['merchant']['street']['street_code'] ?? ''; + $streetName = $merchant['merchant']['street']['street_name'] ?? ''; + if (!isset($result[$streetCode]) && !empty($streetCode)) { + $result[$streetCode] = ['street_code' => $streetCode, 'street_name' => $streetName]; + } + } + return array_values($result); + } + } diff --git a/app/common/model/store/product/CloudProduct.php b/app/common/model/store/product/CloudProduct.php index 1877de7e..e7aaba65 100644 --- a/app/common/model/store/product/CloudProduct.php +++ b/app/common/model/store/product/CloudProduct.php @@ -13,6 +13,7 @@ namespace app\common\model\store\product; use app\common\model\BaseModel; +use app\common\model\system\merchant\Merchant; class CloudProduct extends BaseModel { @@ -30,4 +31,9 @@ class CloudProduct extends BaseModel return 'cloud_product'; } + public function merchant() + { + return $this->hasOne(Merchant::class, 'mer_id', 'mer_id'); + } + } diff --git a/app/common/model/system/merchant/Merchant.php b/app/common/model/system/merchant/Merchant.php index b10dd7da..8e3b1f47 100644 --- a/app/common/model/system/merchant/Merchant.php +++ b/app/common/model/system/merchant/Merchant.php @@ -310,4 +310,10 @@ class Merchant extends BaseModel { $query->whereIn('mer_id',$value); } + + public function street() + { + return $this->hasOne(GeoStreet::class, 'street_code', 'street_id'); + } + } diff --git a/app/controller/api/store/StoreActivity.php b/app/controller/api/store/StoreActivity.php index d31b0037..dec019e4 100644 --- a/app/controller/api/store/StoreActivity.php +++ b/app/controller/api/store/StoreActivity.php @@ -118,4 +118,16 @@ class StoreActivity extends BaseController return app('json')->success($result); } + /** + * 根据活动获取对应的镇街 + * @param StoreActivityDao $dao + * @return mixed + */ + public function district(StoreActivityDao $dao) + { + $activityId = $this->request->get('activity_id', 2); + $result = $dao->district($activityId); + return app('json')->success($result); + } + } \ No newline at end of file diff --git a/route/api.php b/route/api.php index eb20317d..e5eceeec 100644 --- a/route/api.php +++ b/route/api.php @@ -468,6 +468,7 @@ Route::group('api/', function () { Route::get('record', 'api.store.StoreActivity/record'); //活动红包获取记录 Route::get('total', 'api.store.StoreActivity/total'); //活动红包统计 Route::get('product', 'api.store.StoreActivity/product'); //活动商品专区 + Route::get('district', 'api.store.StoreActivity/district'); //活动地区列表 }); })->middleware(UserTokenMiddleware::class, true);