index.wxml 1.1 KB

1234567891011121314151617
  1. <view class="chat">
  2. <view class="content">
  3. <view class="base someone" wx:for="{{2}}" wx:key="index">
  4. <image src="/static/star.png" class="avatar" bindtap="jumpUserInfo" data-uid='{{index}}' />
  5. <view class="message">获取系统信息。由于历史原因,wx.getSystemInfo 是异步的调用格式,但是是同步返回,需要异步获取系统信息请使用 wx.getSystemInfoAsync。</view>
  6. </view>
  7. <view class="base self" wx:for="{{2}}" wx:key="index">
  8. <view class="message">获取系统信息。由于历史原因,wx.getSystemInfo 是异步的调用格式,但是是同步返回,需要异步获取系统信息请使用 wx.getSystemInfoAsync。</view>
  9. <image src="/static/star.png" class="avatar" />
  10. </view>
  11. </view>
  12. <view class="inputBox {{isIos?'iosPadding':''}}">
  13. <input class="input" bindinput="bindKeyInput" value="{{value}}" placeholder="我有话说..." />
  14. <image src="/static/follow_3.png" class="sendImg" bindtap="chooseImage" />
  15. <view class="submit" bindtap="sendReply">发送</view>
  16. </view>
  17. </view>