index.wxml 1.2 KB

1234567891011121314151617181920212223242526
  1. <!-- 对方 -->
  2. <view wx:if="{{role=='you'}}" class='opposite-side'>
  3. <image wx:if="{{userImg}}" class="userImg" src="{{userImg}}"></image>
  4. <image wx:else class="userImg" src="/static/tacitly-approve/MRproduct.png"></image>
  5. <view class="content" style="background: {{type=='text'?'':'#fff'}}; padding: {{type=='text'?'':'20rpx 0 0 0'}};">
  6. <block wx:if="{{type=='text'}}">
  7. {{content}}</block>
  8. <block wx:else>
  9. <image style="width: 320rpx;" mode="widthFix" src="{{fobsurl}}" catchtap="viewImage"></image>
  10. </block>
  11. <view class="msg-time">{{time}}</view>
  12. </view>
  13. </view>
  14. <!-- 自己 -->
  15. <view wx:if="{{role=='my'}}" class='my-msg'>
  16. <view class="content" style="background: {{type=='text'?'':'#fff'}}; padding: {{type=='text'?'':'0rpx'}};">
  17. <block wx:if="{{type=='text'}}">
  18. {{content}}</block>
  19. <block wx:else>
  20. <image style="width: 320rpx;" mode="widthFix" src="{{fobsurl}}" catchtap="viewImage"></image>
  21. </block>
  22. <view class="msg-time">{{time}}</view>
  23. </view>
  24. <image wx:if="{{userImg}}" class="userImg" src="{{userImg}}"></image>
  25. <image wx:else class="userImg" src="/static/tacitly-approve/MRproduct.png"></image>
  26. </view>