修改店铺类型检索的错误

This commit is contained in:
luofei 2023-06-06 17:00:44 +08:00
parent 76f9fcbbb1
commit ae200d7c75

View File

@ -55,7 +55,9 @@ class Merchant extends BaseController
{
[$page, $limit] = $this->getPage();
$where = $this->request->params(['keyword', 'order', 'is_best', 'location', 'category_id', 'type_id','is_trader', 'street_id']);
$where['type_id'] = [MerchantModel::TypeCloudWarehouse, MerchantModel::TypeStore, MerchantModel::TypeSupplyChain, MerchantModel::TypePlatform];
if (empty($where['type_id'])) {
$where['type_id'] = [MerchantModel::TypeCloudWarehouse, MerchantModel::TypeStore, MerchantModel::TypeSupplyChain, MerchantModel::TypePlatform];
}
return app('json')->success($this->repository->getList($where, $page, $limit, $this->userInfo));
}