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>
- <!--
- <view style=' margin-top:10px;width:100%;height:80rpx;border:1px solid;text-align:center;line-height:80rpx; ' bindtap='ceshi'>点击</view> -->
|