更新哈心

This commit is contained in:
shengchanzhe 2023-12-23 17:06:59 +08:00
parent 1ef494997a
commit 65da437241
2 changed files with 6 additions and 4 deletions

View File

@ -281,8 +281,9 @@ class StoreProduct extends BaseController
public function cloud_product_list(){ public function cloud_product_list(){
[$page, $limit] = $this->getPage(); [$page, $limit] = $this->getPage();
$merchant = app()->make(MerchantRepository::class)->search(['mer_id' => $this->merId,])->find(); $merchant = app()->make(MerchantRepository::class)->search(['mer_id' => $this->merId,])->find();
$select=Db::name('cloud_product')->where('mer_id',$merchant['mer_id']) $product_ids=Db::name('cloud_product')->where('mer_id',$this->merId())
->page($page)->limit($limit)->select()->toArray(); ->page($page)->limit($limit)->column('product_id');
$select = Db::name('store_product')->where('mer_id', $this->merId())->whereIn('product_id',$product_ids)->select()->toArray();
$count = Db::name('cloud_product')->where('mer_id',$merchant['mer_id'])->count(); $count = Db::name('cloud_product')->where('mer_id',$merchant['mer_id'])->count();
return app('json')->success(['list'=>$select,'count'=>$count]); return app('json')->success(['list'=>$select,'count'=>$count]);
} }

View File

@ -454,8 +454,9 @@ class Product extends BaseController
public function cloud_product_list(){ public function cloud_product_list(){
[$page, $limit] = $this->getPage(); [$page, $limit] = $this->getPage();
$select=Db::name('cloud_product')->where('mer_id',$this->request->merId()) $product_ids=Db::name('cloud_product')->where('mer_id',$this->request->merId())
->page($page)->limit($limit)->select()->toArray(); ->page($page)->limit($limit)->column('product_id');
$select = Db::name('store_product')->where('mer_id', $this->request->merId())->whereIn('product_id',$product_ids)->select()->toArray();
$count = Db::name('cloud_product')->where('mer_id',$this->request->merId())->count(); $count = Db::name('cloud_product')->where('mer_id',$this->request->merId())->count();
return app('json')->success(['list'=>$select,'count'=>$count]); return app('json')->success(['list'=>$select,'count'=>$count]);
} }