loadingText.vue 684 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <view class="container">
  3. <text v-if="!loading && !noMore">上滑加载更多</text>
  4. <view v-if="loading && !noMore">
  5. <text class="iconfont icon-refrsh roate"></text>
  6. <text>加载中...</text>
  7. </view>
  8. <text v-if="noMore">没有更多数据了</text>
  9. </view>
  10. </template>
  11. <script>
  12. export default {
  13. props:{
  14. loading:{
  15. type: Boolean,
  16. default: false
  17. },
  18. noMore:{
  19. type: Boolean,
  20. default: false
  21. }
  22. },
  23. data() {
  24. return {
  25. };
  26. }
  27. }
  28. </script>
  29. <style lang="scss" scoped>
  30. .container{
  31. width: 100%;
  32. height: 100rpx;
  33. display: flex;
  34. justify-content: center;
  35. align-items: center;
  36. color: #666666;
  37. font-size: 28rpx;
  38. }
  39. </style>