chat-group.wxml 383 B

12345678
  1. <!--pages/chat-group/chat-group.wxml-->
  2. <!-- 群聊列表 -->
  3. <view class="groupList">
  4. <view class="info" wx:for="{{groupList}}" wx:key="i" data-username="{{item.groupname}}" data-roomid="{{item.groupid}}" bindtap="into_room">
  5. <image src="{{imgPath}}/chat-group2.png"></image>
  6. <text data-username="{{item.groupname}}">{{item.groupname}}</text>
  7. </view>
  8. </view>