diff --git a/app/common/dao/store/product/ProductDao.php b/app/common/dao/store/product/ProductDao.php index 6d57c328..873bb8a8 100755 --- a/app/common/dao/store/product/ProductDao.php +++ b/app/common/dao/store/product/ProductDao.php @@ -151,9 +151,6 @@ class ProductDao extends BaseDao }); } }) - ->when(isset($where['keyword']) && $where['keyword'] !== '', function ($query) use ($where) { - $query->whereLike('Product.store_name', "%{$where['keyword']}%"); - }) ->when(isset($where['mer_labels']) && $where['mer_labels'] !== '', function ($query) use ($where) { $query->whereLike('U.mer_labels', "%,{$where['mer_labels']},%"); })