chat-room.wxml 616 B

123456789101112
  1. <!--pages/chat-room/chat-room.wxml-->
  2. <scroll-view class="chat-room">
  3. <view class="chat" wx:for="{{list}}" wx:for-item="item" wx:key="i" data-id="{{item.id}}" data-name="{{item.name}}" bindtap="chatDetail">
  4. <image class="photo" src="{{item.photo}}" mode="cover"></image>
  5. <view class="item-row">
  6. <text class="chat-name">{{item.name}}</text>
  7. <text class="chat-time">{{item.time}}</text>
  8. <text class="chat-content">{{item.content}}</text>
  9. <text class="unread-num" wx:if="{{item.num > 0}}">{{item.num}}</text>
  10. </view>
  11. </view>
  12. </scroll-view>