业务交流通
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <view class='top-content'>
  2. <!-- <image src='images/back.png' class='back-icon' bindtap='back'></image> -->
  3. <view class="weui-cells__title" style=' display: flex;flex-direction: row;justify-content: center;margin-left:210rpx'>
  4. 匿名聊天X
  5. </view>
  6. </view>
  7. <view class='news'>
  8. <view class="historycon">
  9. <scroll-view scroll-y="true" class="history">
  10. <block wx:for="{{newsList}}" wx:key>
  11. <!-- 此处为other -->
  12. <view wx:if="{{item.type==0}}">
  13. <view>
  14. <text class='chat-time'>{{item.date}}</text>
  15. </view>
  16. <view class='other-record'>
  17. <!-- <image class='other-head-img' src='images/headimg.png'></image> -->
  18. <view class='other-record-content-triangle'></view>
  19. <view class='other-record-content'>{{item.message}}</view>
  20. </view>
  21. </view>
  22. <!-- 此处为结尾 -->
  23. <!-- 此处为own -->
  24. <view wx:else>
  25. <view>
  26. <text class='chat-time'>{{item.date}}</text>
  27. </view>
  28. <view class='own-record'>
  29. <view class='own-record-content'>{{item.message}}</view>
  30. <view class='own-record-content-triangle'></view>
  31. <image class='own-head-img' src='images/headimg.png'></image>
  32. </view>
  33. </view>
  34. <!-- own结尾 -->
  35. </block>
  36. </scroll-view>
  37. </view>
  38. </view>
  39. <view class='hei' id="hei"></view>
  40. <view class="sendmessage">
  41. <input class="chat-input" type="emoji" bindinput="bindChange" confirm-type="done" value='{{input}}' placeholder="" />
  42. <button class="btn" type="primary" plain="true" bindtap='send'>发送</button>
  43. <input style='display:none' type="" bindinput="bindChange" confirm-type="done" placeholder="" />
  44. </view>