预售商品列表添加关键字搜索

This commit is contained in:
luofei 2024-02-23 14:28:44 +08:00
parent 5bd3f298c4
commit 2bcee04f20

View File

@ -37,7 +37,7 @@ class StoreProductPresell extends BaseController
public function lst()
{
[$page, $limit] = $this->getPage();
$where = $this->request->params([['type',4],'star','mer_id']);
$where = $this->request->params([['type',4],'star','mer_id', 'keyword']);
return app('json')->success($this->repository->getApiList($where,$page, $limit));
}