custom-nomore.vue 753 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <!-- z-paging自定义的没有更多数据view -->
  2. <template>
  3. <view class="nomore">
  4. <!-- 这里的图片请换成自己项目的图片 -->
  5. <!-- <image class="nomore-image" mode="aspectFit" src="@/static/image/no_more.png"></image> -->
  6. <up-loading-icon mode="semicircle"></up-loading-icon>
  7. <text class="nomore-text">已经到达宇宙尽头啦~</text>
  8. </view>
  9. </template>
  10. <script>
  11. export default {
  12. data() {
  13. return {
  14. };
  15. }
  16. }
  17. </script>
  18. <style scoped>
  19. .nomore{
  20. /* #ifndef APP-NVUE */
  21. display: flex;
  22. /* #endif */
  23. flex-direction: column;
  24. align-items: center;
  25. padding: 20rpx 0px;
  26. }
  27. .nomore-image{
  28. width: 200rpx;
  29. height: 130rpx;
  30. }
  31. .nomore-text{
  32. margin-top: 10rpx;
  33. font-size: 24rpx;
  34. color: #222963;
  35. }
  36. </style>