123456789101112131415161718 |
- <import src="view/chat-item.wxml"/>
- <block wx:for="{{conversations}}" wx:key="conversationId" >
- <view class='m_container' bindtouchstart='touchstart' bindtouchmove='touchmove'>
- <template is="chat-item" data="{{item,isTouchMove}}"/>
- <view class='delete'>删除</view>
- </view>
- </block>
|