roomItem.wxml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <view class="tj_listItem" data-id="{{room.id}}" bindtap="gotoWV">
  2. <view class="tj_listItemCover">
  3. <image mode="aspectFill" class="coverImage"
  4. src="{{room.appListPicUrl}}"></image>
  5. </view>
  6. <view class="tj_listItemMsg">
  7. <p class="tj_listItemTitle">
  8. {{room.name}}
  9. </p>
  10. <view class="tj_listItemTip">
  11. <view>
  12. <text class="tj_listItemTipText">{{room.address}}</text>
  13. <!-- <text> | </text> -->
  14. </view>
  15. <!-- <view>
  16. <text>唐家湾镇</text>
  17. <text> | </text>
  18. </view>
  19. <view>
  20. <text>格力海岸</text>
  21. </view> -->
  22. </view>
  23. <view class="tj_listItemTag">
  24. <view class="tagVr">
  25. <view class="tagItemIcon">
  26. <image class="tagItemIconImage" mode="heightFix" src="../../static/images/icon/vrIcon.png"></image>
  27. </view>
  28. <view class="tip">
  29. 房源
  30. </view>
  31. </view>
  32. <view class="tagItem">VR看房</view>
  33. <view class="tagItem">随时可看</view>
  34. </view>
  35. <view class="tj_listItemPrice">
  36. <text class="unitPrice">平均{{room.averagePrice}}元/平</text>
  37. <text class="totalPrice" wx:if="{{room.type==2}}">{{room.retailPrice}}元/月</text>
  38. <text class="totalPrice" wx:else>{{room.retailPrice}}万</text>
  39. </view>
  40. </view>
  41. </view>