partyItem.wxml 1.1 KB

1234567891011121314151617181920
  1. <wxs module="common" src="./common.wxs"></wxs>
  2. <view class="tj_listItem" data-id="{{room.brandId}}" data-roomId="{{room.businessId}}" data-index="{{index}}" bindtap="gotoWV">
  3. <view class="tj_listItemCover">
  4. <image wx:if="{{ room.appListPicUrl && room.appListPicUrl!=''}}" mode="aspectFill" class="coverImage" src="{{room.appListPicUrl}}"></image>
  5. <image wx:else mode="aspectFill" class="coverImage" src="../../static/images/icon/pic_bg@2x.png"></image>
  6. </view>
  7. <view class="tj_listItemMsg">
  8. <view class="tj_listItemTitle">
  9. <p>
  10. {{room.name}}
  11. </p>
  12. </view>
  13. <view class="tj_listItemTip">
  14. <!-- <text class="tj_listItemTipText"><text class="label">开播时间</text> {{common.TimeToDate(room.effectiveStartTime,'YYYY年MM月DD日 hh时mm分ss秒') }} - {{room.effectiveEndTime}}</text> -->
  15. <text class="tj_listItemTipText"><text class="label">开播时间</text> {{common.TimeToDate((room.effectiveStartTime /1000),'MM-DD hh:mm') +' ~ ' + common.TimeToDate((room.effectiveEndTime /1000),'MM-DD hh:mm')}}</text>
  16. </view>
  17. </view>
  18. </view>