index.wxml 1.2 KB

12345678910111213141516171819202122232425
  1. <view class="display-item-box" style="padding-top: {{padTop}}rpx; border-top: {{borTop}}rpx solid rgba(151, 151, 151, .1);" bindtap="jumpDetails">
  2. <!-- 展示图片 -->
  3. <view class="display-item-image">
  4. <image wx:if="{{content.attinfos[0]}}" src="{{content.attinfos[0].fobsurl}}" mode="aspectFill"></image>
  5. <image wx:else src="/static/tacitly-approve/MRproduct.png" mode="aspectFit"></image>
  6. </view>
  7. <!-- 展示文本信息 -->
  8. <view class="display-item-textExplain">
  9. <view class="textExplain-title u-line-1">{{content.ftitle}}</view>
  10. <view class="textExplain-explain u-line-1">{{content.fcontent}}</view>
  11. <view class="textExplain-userData-time">
  12. <view class="textExplain-userData">
  13. <image wx:if="{{content.headportraiturl}}" src="{{content.headportraiturl}}" mode="aspectFill"></image>
  14. <image wx:else src="/static/tacitly-approve/MRuserImg.png" mode="aspectFit"></image>
  15. {{anonymity?'匿名用户':content.createby}}
  16. <slot name="button">
  17. </slot>
  18. </view>
  19. <view class="textExplain-time">
  20. {{content.checkdate}}
  21. </view>
  22. </view>
  23. </view>
  24. </view>