live-introduction.wxml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <view class="plv-mp-live-introduction-wrap plv-mp-skin__{{ skin }}">
  2. <scroll-view scroll-y>
  3. <view class="plv-mp-live-introduction_top">
  4. <text class="plv-mp-live-introduction_top_channel_title">{{ channelDetail.name }}</text>
  5. <view class="plv-mp-live-introduction_top_channel_info">
  6. <image class="plv-mp-live-introduction_top_channel_logo" src="{{ channelDetail.coverImage }}"/>
  7. <text class="plv-mp-live-introduction_top_channel_host">{{ channelDetail.publisher }}</text>
  8. <view class="plv-mp-live-introduction_top_channel_likes channel-info__view">
  9. <image class="plv-mp-live-introduction-icon"
  10. src="../../assets/images/{{ skin }}/desc-icon-likes.png" />
  11. {{ channelDetail.likes }}
  12. </view>
  13. <view class="plv-mp-live-introduction_top_channel_viewers channel-info__view">
  14. <image class="plv-mp-live-introduction-icon"
  15. src="../../assets/images/{{ skin }}/desc-icon-viewers.png" />
  16. {{ channelDetail.pageView }}
  17. </view>
  18. </view>
  19. </view>
  20. <view class="plv-mp-live-introduction_middle">
  21. <view class="plv-mp-live-introduction_middle_live_status">{{ liveStatusText }}</view>
  22. <view class="plv-mp-live-introduction_middle_live_time">直播时间:{{ channelDetail.startTime || '' }}</view>
  23. <view class="player-countdown" wx:if="{{ showCountDown }}">
  24. <view class="countdown-content">
  25. <view>距离直播开始还有: <text class="player-days">{{ days }}</text> 天 <text class="player-hours">{{ hours }}</text> 小时 <text class="player-minutes">{{ minutes }}</text> 分 <text class="player-seconds">{{ seconds }}</text> 秒 </view>
  26. </view>
  27. </view>
  28. </view>
  29. <view class="plv-mp-live-introduction-bottom">
  30. <menu-custom
  31. skin="{{ skin }}"
  32. parseHtml="{{ channelDetail.desc }}" />
  33. </view>
  34. </scroll-view>
  35. </view>