like.wxml 1.1 KB

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