1234567891011121314151617181920 |
- <wxs module="common" src="./common.wxs"></wxs>
- <view class="tj_listItem" data-id="{{room.brandId}}" data-roomId="{{room.businessId}}" data-index="{{index}}" bindtap="gotoWV">
- <view class="tj_listItemCover">
- <image wx:if="{{ room.appListPicUrl && room.appListPicUrl!=''}}" mode="aspectFill" class="coverImage" src="{{room.appListPicUrl}}"></image>
- <image wx:else mode="aspectFill" class="coverImage" src="../../static/images/icon/pic_bg@2x.png"></image>
- </view>
- <view class="tj_listItemMsg">
- <view class="tj_listItemTitle">
- <p>
- {{room.name}}
- </p>
- </view>
- <view class="tj_listItemTip">
- <!-- <text class="tj_listItemTipText"><text class="label">开播时间</text> {{common.TimeToDate(room.effectiveStartTime,'YYYY年MM月DD日 hh时mm分ss秒') }} - {{room.effectiveEndTime}}</text> -->
- <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>
- </view>
- </view>
- </view>
|