partyItem.wxml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <view class="tj_listItem" data-id="{{room.brandId}}" data-roomId="{{room.businessId}}" data-index="{{index}}" bindtap="gotoWV">
  2. <view class="tj_listItemCover">
  3. <image wx:if="{{ room.appListPicUrl && room.appListPicUrl!=''}}" mode="aspectFill" class="coverImage" src="{{room.appListPicUrl}}"></image>
  4. <image wx:else mode="aspectFill" class="coverImage" src="../../static/images/icon/pic_bg@2x.png"></image>
  5. </view>
  6. <view class="tj_listItemMsg">
  7. <view class="tj_listItemTitle">
  8. <p>
  9. {{room.name}}
  10. </p>
  11. </view>
  12. <view class="tj_listItemTip">
  13. <text class="tj_listItemTipText"><text class="label">开播时间</text> {{room.businessId}} {{room.effectiveStartTime}} - {{room.effectiveEndTime}}</text>
  14. </view>
  15. <!-- <view class="tj_listItemTag">
  16. <view class="tagVr">
  17. <view class="tagItemIcon">
  18. <image class="tagItemIconImage" mode="heightFix" src="../../static/images/icon/vrIcon.png"></image>
  19. </view>
  20. <view class="tip">
  21. 房源
  22. </view>
  23. </view>
  24. <view class="tagItem">VR看房</view>
  25. <view class="tagItem">随时可看</view>
  26. </view> -->
  27. <!-- <text class="totalPrice" wx:if="{{room.type==2}}">{{room.retailPrice}}元/月</text> -->
  28. <!-- <view class="tj_listItemPrice">
  29. <text class="unitPrice">平均{{room.averagePrice}}元/平</text>
  30. <text class="totalPrice">{{room.retailPrice}}万</text>
  31. </view> -->
  32. </view>
  33. </view>