|
@@ -268,6 +268,7 @@ public class TaBuildingController extends BaseController {
|
268
|
268
|
@RequestParam(required = false) String buildingType, // 项目类型Id
|
269
|
269
|
@RequestParam(required = false) String houseType, // 户型
|
270
|
270
|
@RequestParam(required = false) String price, // 价格
|
|
271
|
+ @RequestParam(required = false) String priceType, // 价格类型
|
271
|
272
|
@RequestParam(required = false) String area, // 面积
|
272
|
273
|
// @RequestParam(required = false) Integer minPrice, // 最低价格
|
273
|
274
|
// @RequestParam(required = false) Integer maxPrice, // 最高价格
|
|
@@ -292,7 +293,7 @@ public class TaBuildingController extends BaseController {
|
292
|
293
|
List<String[]> priceList = getParamListOf(price);
|
293
|
294
|
List<String[]> areaList = getParamListOf(area);
|
294
|
295
|
|
295
|
|
- return taBuildingService.getWxBuildingList(pageNumber, pageSize, name, targets, cityId,mine, houseTypeList, buildingTypeList, priceList, areaList,orgId);
|
|
296
|
+ return taBuildingService.getWxBuildingList(pageNumber, pageSize, name, targets, cityId,mine, houseTypeList, buildingTypeList, priceList, areaList,orgId,priceType);
|
296
|
297
|
}
|
297
|
298
|
|
298
|
299
|
|