12345678910111213141516171819202122 |
- <view wx:if="{{ putCommentList.length > 0 }}" style="width: 100%">
- <view wx:for="{{ putCommentList }}" wx:for-item="item" wx:for-index="index" wx:key="index" style="width: 100%">
- <view style="height: 90rpx;display: flex;align-items: center;justify-content: start;">
- <image style="height:60rpx;width:60rpx;background-color: #ffddcc;border-radius: 50%;" src="{{ item.headerImg}}"></image>
- <view style="height:60rpx;font-size: 27rpx;color: #b4b4b4;padding-left: 20rpx;padding-bottom:8rpx;display: flex;flex-direction: column-reverse;">{{ item.userName }}</view>
- </view>
- <view style="display: flex;flex-direction: column;align-items: flex-start;justify-content: center;padding-left: 80rpx;width: 100%;">
- <view style="display: flex;width: 100%;">
- <view class="content-text" style="width:525rpx;padding-right: 2%;font-size: 27rpx;">{{ item.content }}</view>
- <!-- <view style="display: flex;align-items: flex-start;">
- <view style="font-size: 19rpx;padding: 8rpx;background-color: #ffffff;border: 2rpx solid #000000;border-radius: 10rpx;">删除</view>
- </view> -->
- </view>
- <view class="title-text" style="line-height: 50rpx;padding-left:10rpx;margin-top: 5rpx;width: 600rpx;height: 50rpx;font-size: 24rpx;color: #858585;background-color: #eeeeee;">{{ item.sourceTitle }}</view>
- <view style="font-size: 20rpx;color: #b5b5b5;margin-top: 10rpx;">{{ item.commentTime }}</view>
- </view>
- <view style="height: 30rpx;border-bottom: 2rpx solid #11111130;"></view>
- </view>
- </view>
- <view wx:else style="display: flex;align-items: center;justify-content: center;height: 90vh;">
- <t-empty icon="info-circle-filled" description="暂无数据" />
- </view>
|