videoRecommend.wxml 1022 B

1234567891011121314
  1. <!--pages/videoRecommend/videoRecommend.wxml-->
  2. <view>
  3. <scroll-view scroll-y="true" style="height: 100%;padding:0;margin:0;">
  4. <view style="display: flex;justify-content: flex-start;flex-wrap: wrap;">
  5. <view bindtap="gotoVideoDetail" data-url="{{item.shareUrl}}" style="margin-top: 20rpx;margin-left: 33rpx;width: 327rpx;" wx:for="{{videoInfo}}" wx:key="index">
  6. <view wx:if="{{item.images}}" binderror="SPTJImgError" data-index="{{index}}" style="width: 327rpx;height: 185rpx;background-image: url({{item.images}});background-size:cover;"></view>
  7. <view wx:else style="height:133rpx;width:308rpx;display: flex;justify-content: center;align-items: center;color: gray;">
  8. <t-icon name="image-error" size="80rpx" data-name="image-error" />
  9. </view>
  10. <view style="font-size: 25rpx;font-family: PingFang SC;color: #666666;-webkit-line-clamp:2;overflow:hidden;text-overflow: ellipsis;display: -webkit-box;-webkit-box-orient:vertical;">{{item.detailTitle}}</view>
  11. </view>
  12. </view>
  13. </scroll-view>
  14. </view>