Commit 13432d20 authored by Hsinli's avatar Hsinli

addd

parent 116d3713
Pipeline #6503 passed with stage
in 3 seconds
...@@ -369,16 +369,11 @@ class NewHouseService extends Service { ...@@ -369,16 +369,11 @@ class NewHouseService extends Service {
if (condition.area && condition.area.hasOwnProperty('min') && condition.area.hasOwnProperty('max')) {//面积 if (condition.area && condition.area.hasOwnProperty('min') && condition.area.hasOwnProperty('max')) {//面积
filter.queryConditions.push( filter.queryConditions.push(
{ {
key: 'houseArea', key: 'area',
value: condition.area.min, value: condition.area.min + ',' + condition.area.max,
operator: 'greaterEqual', operator: 'between',
}, },
{ );
key: 'houseArea',
value: condition.area.max,
operator: 'lessEqual',
})
;
} }
if (condition.house_type) {//户型 if (condition.house_type) {//户型
filter.queryConditions.push({ filter.queryConditions.push({
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment