商户列表添加街道查询

This commit is contained in:
luofei 2023-05-19 09:41:36 +08:00
parent c17fbca1b3
commit beb9d7eb77

View File

@ -53,7 +53,7 @@ class Merchant extends BaseController
public function lst()
{
[$page, $limit] = $this->getPage();
$where = $this->request->params(['keyword', 'order', 'is_best', 'location', 'category_id', 'type_id','is_trader']);
$where = $this->request->params(['keyword', 'order', 'is_best', 'location', 'category_id', 'type_id','is_trader', 'street_id']);
return app('json')->success($this->repository->getList($where, $page, $limit, $this->userInfo));
}