|
@@ -109,8 +109,8 @@ public class SearchHouseServiceImpl extends ServiceImpl<SearchHouseMapper, Searc
|
109
|
109
|
}
|
110
|
110
|
|
111
|
111
|
private Integer[] getUnitPriceRange(Integer minPriceW, Integer maxPriceW, Integer areaResultId) {
|
112
|
|
- Integer minPrice = minPriceW * 10000;
|
113
|
|
- Integer maxPrice = maxPriceW * 10000;
|
|
112
|
+ Integer minPrice = minPriceW;
|
|
113
|
+ Integer maxPrice = maxPriceW;
|
114
|
114
|
|
115
|
115
|
// 字典过滤 - 必须与小程序端保持一致
|
116
|
116
|
switch (areaResultId) {
|
|
@@ -151,6 +151,6 @@ public class SearchHouseServiceImpl extends ServiceImpl<SearchHouseMapper, Searc
|
151
|
151
|
break;
|
152
|
152
|
}
|
153
|
153
|
|
154
|
|
- return new Integer[] {minPrice, maxPrice};
|
|
154
|
+ return new Integer[] {minPrice * 10000, maxPrice * 10000};
|
155
|
155
|
}
|
156
|
156
|
}
|