diff --git a/app/common/dao/store/product/ProductDao.php b/app/common/dao/store/product/ProductDao.php index 7d4b2fbf..4e2b347d 100644 --- a/app/common/dao/store/product/ProductDao.php +++ b/app/common/dao/store/product/ProductDao.php @@ -117,6 +117,7 @@ class ProductDao extends BaseDao $whereArr[$key] = $item; } } + // halt($where); $query = isset($where['soft']) ? model::onlyTrashed()->alias('Product') : model::alias('Product'); if (isset($where['is_trader']) && $where['is_trader'] !== '') { $query->hasWhere('merchant', function ($query) use ($where) { @@ -152,7 +153,7 @@ class ProductDao extends BaseDao } }) ->when(isset($where['keyword']) && $where['keyword'] !== '', function ($query) use ($where) { - $query->whereLike('Product.keyword', "%{$where['keyword']}%"); + $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']},%");