+ +
+ +
');"> + <% if (house.getFirstImage() == null) { %> +
🏠 暂无图片
+ <% } %> +
+ + +
+ <% + String[] images = null; + if (house.getImgUrl() != null && !house.getImgUrl().isEmpty()) { + images = house.getImgUrl().split(","); + for (int i = 0; i < images.length; i++) { + %> +
+ <% + } + } + %> +
+
+ + +
+
<%= house.getTitle() %>
+ +
+ ¥<%= house.getRentPrice() %>/月 +
+ +
+
+
户型
+
<%= house.getHouseType() != null ? house.getHouseType() : "待定" %>
+
+
+
面积
+
<%= house.getArea() != null ? house.getArea() : "待定" %>
+
+
+
租赁类型
+
<%= house.getRentTypeText() %>
+
+
+
房源编号
+
<%= house.getHouseNo() %>
+
+
+ +
+
📍 房源地址
+

<%= house.getAddress() != null ? house.getAddress() : "暂无地址信息" %>

+
+ +
+
🛋️ 配套设施
+
+ <% + String facility = house.getFacility(); + if (facility != null && !facility.isEmpty()) { + String[] facilities = facility.split(","); + for (String f : facilities) { + %> + <%= f.trim() %> + <% + } + } else { + %> + 暂无设施信息 + <% + } + %> +
+
+ +
+
📝 房源描述
+
+ <%= house.getDescription() != null ? house.getDescription() : "暂无描述信息" %> +
+
+
+