以人找房功能bug修改
This commit is contained in:
parent
f7dd78f2d4
commit
ec2e07c6ba
@ -149,12 +149,10 @@ public class BuildingHouseServiceImpl extends DefaultBaseService implements IBui
|
||||
if(null != houseUserDTOS && houseUserDTOS.size() > 0) {
|
||||
String ids = "";
|
||||
for(int i=0;i<houseUserDTOS.size();i++) {
|
||||
if(i > 1) {
|
||||
ids += ",";
|
||||
ids += houseUserDTOS.get(i).getBuildingHouseId() + ",";
|
||||
}
|
||||
ids += houseUserDTOS.get(i).getBuildingHouseId();
|
||||
}
|
||||
params.put("buildingHouseIds", Arrays.asList(ids));
|
||||
ids = ids.substring(0, ids.length()-1);
|
||||
params.put("buildingHouseIds", Arrays.asList(ids.split(",")));
|
||||
params.remove("keywords");
|
||||
}
|
||||
}
|
||||
|
@ -127,6 +127,7 @@
|
||||
],
|
||||
page: true,
|
||||
parseData: function(data) {
|
||||
console.log(data)
|
||||
return {
|
||||
'code': 0,
|
||||
'msg': '',
|
||||
|
Loading…
Reference in New Issue
Block a user