index.wxml 1.6 KB

12345678910111213141516171819202122232425262728293031
  1. <view wx:if="{{isGroup}}" style="margin-bottom: 40rpx;">
  2. <GambitMsgBubble itemData='{{groupData}}' role="{{false}}" isShowBottom="false" isShowBottom='{{false}}' />
  3. </view>
  4. <block wx:else="">
  5. <!-- 对方 -->
  6. <view wx:if="{{role=='you'}}" class='opposite-side'>
  7. <image wx:if="{{userImg}}" class="userImg" src="{{userImg}}"></image>
  8. <image wx:else class="userImg" src="https://bwj.obs.cn-east-2.myhuaweicloud.com/resources/WeChat/userCenter/userImg.png"></image>
  9. <view class="content" style="background: {{type=='text'?'':'#fff'}}; padding: {{type=='text'?'':'20rpx 0 0 0'}};">
  10. <block wx:if="{{type=='text'}}">
  11. {{content}}</block>
  12. <block wx:else>
  13. <image style="width: 320rpx;" mode="widthFix" src="{{fobsurl}}" catchtap="viewImage"></image>
  14. </block>
  15. <view class="msg-time">{{time}}</view>
  16. </view>
  17. </view>
  18. <!-- 自己 -->
  19. <view wx:if="{{role=='my'}}" class='my-msg'>
  20. <view class="content" style="background: {{type=='text'?'':'#fff'}}; padding: {{type=='text'?'':'0rpx'}};">
  21. <block wx:if="{{type=='text'}}">
  22. {{content}}</block>
  23. <block wx:else>
  24. <image style="width: 320rpx;" mode="widthFix" src="{{fobsurl}}" catchtap="viewImage"></image>
  25. </block>
  26. <view class="msg-time">{{time}}</view>
  27. </view>
  28. <image wx:if="{{userImg}}" class="userImg" src="{{userImg}}"></image>
  29. <image wx:else class="userImg" src="https://bwj.obs.cn-east-2.myhuaweicloud.com/resources/WeChat/userCenter/userImg.png"></image>
  30. </view>
  31. </block>