communicateList.wxml 1.1 KB

123456789101112131415161718
  1. <view style="padding-top: 20rpx">
  2. <!-- 列表 -->
  3. <view wx:for="{{yjzjDataList}}" wx:for-item="item" wx:for-index="index" wx:key="index" style="height: 150rpx;width: 100%;display:flex;border-bottom: 4rpx solid #F5F5F5;margin-bottom: 20rpx"data-tag = "{{index}}" bindtap="goYjzjDetail" data-theme="{{ item.id }}" data-item="{{ item.htmlContent }}">
  4. <view style="height: 140rpx;width: 100%;">
  5. <view style="height: 99rpx;width: 100%;font-size: 26rpx;line-height:33rpx;overflow: hidden;text-overflow: ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;color: #666666;">
  6. {{ item.theme }}
  7. </view>
  8. <view style="display:flex;align-items:center;height: 45rpx;width: 100%;font-size: 22rpx;color: #999999;padding-top: 3rpx">
  9. 征集时间:{{ item.beginTime}} 至 {{ item.endTime }}
  10. </view>
  11. </view>
  12. <!-- 图片 -->
  13. <!-- <view style="display:flex;">
  14. <image src="{{imgUrl}}index-communicate-list-img.png" style="height: 90rpx;width: 160rpx"></image>
  15. </view> -->
  16. </view>
  17. <!-- 列表 -->
  18. </view>