chat-item.wxml 833 B

1234567891011121314151617181920
  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.img,count:item.count}}"/>
  5. <view class="chat-item-content-super-style">
  6. <view class="chat-item-name-style">{{item.nickname}}</view>
  7. <!--<image src="./../../image/chat/send_fail.png" style="width: 28rpx;height: 28rpx;margin-right: 6rpx;"/>-->
  8. <text class="chat-item-content-style">{{item.content}}</text>
  9. </view>
  10. <view class="chat-item-status-super-style">
  11. <view class="chat-item-time-style">{{item.timeStr}}</view>
  12. </view>
  13. </view>
  14. <view class="list-divide-line" style="width: 79.5%;margin-left: 20.5%"/>
  15. </template>