chatroom.wxml 1.0 KB

12345678910111213141516171819202122232425262728
  1. <view class="plv-mp-chatroom-wrap plv-mp-skin__{{ skin }}">
  2. <scroll-view class="plv-mp-chatroom-scroll-view" scroll-top="{{ scrollTop }}" bindscroll="onChatListScroll" scroll-y>
  3. <chat-list
  4. id="chatList"
  5. isOnlyHost="{{ isOnlyHost }}"
  6. chat-list="{{ chatList }}"
  7. has-more="{{ hasMore }}"
  8. bindseemore="handleSeeMore"
  9. skin="{{ skin }}"
  10. />
  11. </scroll-view>
  12. <view wx:if="{{ comeMore }}" class="plv-mp-chatroom-more" bindtap="handleSeeMoreMsg">有更多新消息,点击查看</view>
  13. <!-- 点赞 -->
  14. <view class="plv-mp-chatroom-thumb" bindtap="handleLike" wx:if="{{ showSendLike }}">
  15. <image src="../../assets/images/chat-icon-thumb.png" class="plv-mp-chatroom-icon__thumb" />
  16. <text class="plv-mp-chatroom-thumb__text">{{ channelDetail.likes }}</text>
  17. </view>
  18. <chat-edit
  19. skin="{{ skin }}"
  20. bindlike="handleLike"
  21. bindsengmsg="handleSendMsg"
  22. bindonlyhost="handleOnlyHost"
  23. bindshowbulletin="handleShowBulletin"
  24. showBulletin="{{ showBulletin }}"
  25. />
  26. </view>