content-parser.wxml 695 B

12345678910111213141516
  1. <view class="plv-mp-chat-msg-content">
  2. <image
  3. wx:if="{{ content.type === 'chatImg' }}"
  4. class="plv-mp-chat-msg-img"
  5. mode="widthFix"
  6. src="{{ content.uploadImgUrl }}"
  7. style="width: {{ content.size.width/2 }}rpx; height: {{ content.size.height/2 }}rpx;"
  8. bindtap="tapImage"
  9. />
  10. <block wx:else>
  11. <block wx:for="{{ contentArr }}" wx:for-index="itemIndex" wx:for-item="item" wx:key="itemIndex">
  12. <text class="plv-mp-chat-msg-content-title" wx:if="{{ item.type === 'text' }}">{{ item.content }}</text>
  13. <image class="plv-mp-chat-msg-emtion-pic" wx:else src="{{ item.url }}" style="width:30px;height:30px;" mode="widthFix"></image>
  14. </block>
  15. </block>
  16. </view>