1234567891011121314151617181920212223 |
- <view class="display-item-box" style="padding-top: {{padTop}}rpx; border-top: {{borTop}}rpx solid rgba(151, 151, 151, .1);" bindtap="jumpDetails">
- <!-- 展示图片 -->
- <view class="display-item-image">
- <image wx:if="{{content.attinfos[0]}}" src="{{content.attinfos[0].fobsurl}}" mode="aspectFill"></image>
- <image wx:else src="/static/userImage.png" mode="aspectFit"></image>
- </view>
- <!-- 展示文本信息 -->
- <view class="display-item-textExplain">
- <view class="textExplain-title">{{content.ftitle}}</view>
- <view class="textExplain-explain u-line-1">{{content.fcontent}}</view>
- <view class="textExplain-userData-time">
- <view class="textExplain-userData">
- <image src="{{content.headportraiturl}}" mode="aspectFit"></image>{{content.createby}}
- <slot name="button">
- </slot>
- </view>
- <view class="textExplain-time">
- {{content.checkdate}}
- </view>
- </view>
- </view>
- </view>
|