You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1 line
624 B
1 line
624 B
4 years ago
|
<view><view class="chat-list"><block wx:for="{{chatList}}" wx:for-item="chat" wx:for-index="index" wx:key="index"><view class="chat"><view data-event-opts="{{[['tap',[['toChat',['$0'],[[['chatList','',index]]]]]]]}}" class="row" bindtap="__e"><view class="left"><image src="{{chat.face}}"></image></view><view class="right"><view class="top"><view class="username">{{chat.username}}</view><view class="time">{{chat.time}}</view></view><view class="bottom"><view class="msg">{{chat.msg}}</view><block wx:if="{{chat.tisNum>0}}"><view class="tis">{{chat.tisNum}}</view></block></view></view></view></view></block></view></view>
|