-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathchatroom.wxml
40 lines (40 loc) · 1.35 KB
/
chatroom.wxml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<view class="news">
<view class="historycon">
<scroll-view scroll-y="true" class="history" scroll-top="{{scrollTop}}">
<block wx:for="{{newslist}}" wx:key="index">
<!--自己的消息 -->
<view class="chat-mynews" wx:if="{{item.sender == id}}">
<view class="temp">
<view class='myRight'>
<block>
<view class='newTxt'>{{item.content}}</view>
</block>
</view>
<view style="padding-right: 20rpx;">
<image class='newImg' src="{{item.picture}}" bindtap="toMyself"></image>
</view>
</view>
</view>
<!-- 别人的消息 -->
<view class="chat-news" wx:else>
<view style="text-align: left;padding-left: 20rpx;">
<image class='newImg' src="{{item.picture}}" bindtap="toYou"></image>
</view>
<view class='youLeft'>
<block>
<view class='newTxt'>{{item.content}}</view>
</block>
</view>
</view>
</block>
</scroll-view>
</view>
</view>
<view id="flag"></view>
<!-- 聊天输入 -->
<view class="message">
<form bindreset="cleanInput" class="sendMessage">
<input type="text" value="{{content}}" bindinput='bindChange'></input>
<view class="sendBtn" bindtap="sendMessage">发送</view>
</form>
</view>