提交 4a5c86a4 编写于 作者: D Devil

搜索价格筛选错误修复

上级 39326cef
......@@ -230,7 +230,7 @@ class SearchService
if(empty($temp[0]) && !empty($temp[1]))
{
$where_screening_price[] = [
['min_price', 'elt', $temp[1]],
['min_price', '<=', $temp[1]],
];
// 最小金额大于0、最大金额大于0
......@@ -238,15 +238,15 @@ class SearchService
} elseif((!empty($temp[0]) && !empty($temp[1])) || (empty($temp[0]) && empty($temp[1])))
{
$where_screening_price[] = [
['min_price', 'egt', $temp[0]],
['min_price', 'elt', $temp[1]],
['min_price', '>=', $temp[0]],
['min_price', '<=', $temp[1]],
];
// 最小金额大于0、最大金额等于0
} elseif(!empty($temp[0]) && empty($temp[1]))
{
$where_screening_price[] = [
['min_price', 'egt', $temp[0]],
['min_price', '>=', $temp[0]],
];
}
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册