index.wxml 1.0 KB

1234567891011121314151617181920212223
  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/userImage.png" mode="aspectFit"></image>
  6. </view>
  7. <!-- 展示文本信息 -->
  8. <view class="display-item-textExplain">
  9. <view class="textExplain-title">{{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 src="{{content.headportraiturl}}" mode="aspectFit"></image>{{content.createby}}
  14. <slot name="button">
  15. </slot>
  16. </view>
  17. <view class="textExplain-time">
  18. {{content.checkdate}}
  19. </view>
  20. </view>
  21. </view>
  22. </view>