商户的商品搜索列表

This commit is contained in:
mkm 2023-11-14 10:41:02 +08:00
parent 6c37022bfc
commit 56bef0a81e

View File

@ -132,7 +132,7 @@ class StoreSpu extends BaseController
$where['mer_id'] = $id;
$where['is_gift_bag'] = 0;
$where['order'] = $where['order'] ? $where['order'] : 'sort';
$data = $this->repository->getApiSearch($where, $page, $limit, $this->userInfo);
$data = $this->repository->getApiSearch($where, $page, $limit, $this->userInfo,true);
return app('json')->success($data);
}