chat-list.wxml 540 B

123456789101112131415161718
  1. <import src="view/chat-item.wxml"/>
  2. <block wx:for="{{conversations}}" wx:key="conversationId" >
  3. <view class='m_container' bindtouchstart='touchstart' bindtouchmove='touchmove'>
  4. <template is="chat-item" data="{{item,isTouchMove}}"/> <!-- 聊天用户列表 -->
  5. <!-- <view class='delete'>删除</view> -->
  6. </view>
  7. </block>
  8. <!--
  9. <view style=' margin-top:10px;width:100%;height:80rpx;border:1px solid;text-align:center;line-height:80rpx; ' bindtap='ceshi'>点击</view> -->