123456789101112131415161718 |
- <view style="padding-top: 20rpx">
- <!-- 列表 -->
- <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 }}">
- <view style="height: 140rpx;width: 100%;">
- <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;">
- {{ item.theme }}
- </view>
- <view style="display:flex;align-items:center;height: 45rpx;width: 100%;font-size: 22rpx;color: #999999;padding-top: 3rpx">
- 征集时间:{{ item.beginTime}} 至 {{ item.endTime }}
- </view>
- </view>
- <!-- 图片 -->
- <!-- <view style="display:flex;">
- <image src="{{imgUrl}}index-communicate-list-img.png" style="height: 90rpx;width: 160rpx"></image>
- </view> -->
- </view>
- <!-- 列表 -->
- </view>
|