12345678910111213141516171819202122 |
- <!--pages/like/like.wxml-->
- <view wx:if="{{ list.length > 0 }}">
- <view style="border-top: 1px solid gainsboro;" />
- <scroll-view scroll-y="true" style="height: 99vh;">
- <view class="list" wx:for="{{list}}" wx:key="index">
- <view style="margin-right: 24rpx;font-weight: bold;width: 100%;">
- <view style="overflow:hidden;text-overflow:ellipsis; display: -webkit-box;-webkit-box-orient: vertical;-webkit-line-clamp: 2;">{{item.title}}</view>
- <view style="display: flex;color: #BCBCBC;font-size: 25rpx;margin-top: 80rpx;">
- <view>{{item.officialAccount}}</view>
- <view style="margin-left: 30rpx;">浏览量{{item.count}}</view>
- <image style="width: 32rpx;height: 32rpx;margin-left: auto;" src="{{imgUrl}}/icon/like.png"></image>
- </view>
- </view>
- <view>
- <image style="width: 200rpx;height: 200rpx;border-radius: 12rpx;" src="{{item.pic}}"></image>
- </view>
- </view>
- </scroll-view>
- </view>
- <view wx:else style="display: flex;align-items: center;justify-content: center;height: 100vh;">
- <t-empty icon="info-circle-filled" description="暂无数据" />
- </view>
|