123456789101112131415161718192021222324252627
  1. <view class="room-card" wx:if="{{room}}" bindtap="handleTap">
  2. <view class="head">
  3. <view class="subtitle gray-text">{{room.buildingArea}}</view>
  4. <view class="title">{{room.buildingName}}</view>
  5. <view class="gray-text">{{room.address}} 距您{{room.distance}}km</view>
  6. </view>
  7. <view class="body">
  8. <view class="thumb">
  9. <image mode="scaleToFill" src="{{room.buildingImg[0].url}}"></image>
  10. </view>
  11. <view class="content">
  12. <view class="price">{{room.custPrice}}</view>
  13. <view class="gray-text">均价约(元/平)</view>
  14. <view class="persons" style="margin-top: 14rpx;">{{room.visits.length}}人围观</view>
  15. <view class="tags" wx:if="{{room.buildingTag && room.buildingTag.length}}">
  16. <view
  17. class="tag"
  18. wx:for="{{[0, 1, 2]}}"
  19. wx:for-index="inx"
  20. wx:if="{{inx < room.buildingTag.length}}"
  21. wx:key="inx">
  22. {{room.buildingTag[inx].tagName}}
  23. </view>
  24. </view>
  25. </view>
  26. </view>
  27. </view>