chat-item.wxml 857 B

123456789101112131415161718
  1. <import src="chat-item-head.wxml"/>
  2. <template name="chat-item">
  3. <view class="chat-item-style" bindtap="toChat" data-item="{{item}}" hover-class="press-style">
  4. <template is="chat-item-head" data="{{headUrl:item.avatar,unread:item.unReadNum}}"/>
  5. <view class="content">
  6. <view class="chat-item-content-super-style">
  7. <view class="chat-item-name-style">
  8. <text>{{item.name}}</text>
  9. <text class="organ" wx:if="{{item.store}}">{{ item.store }}</text>
  10. </view>
  11. <text class="chat-item-content-style">{{item.latestMsgContent || ''}}</text>
  12. </view>
  13. <view class="chat-item-status-super-style">
  14. <view class="chat-item-time-style">{{item.timeStr}}</view>
  15. </view>
  16. </view>
  17. </view>
  18. </template>