load-more.vue 467 B

123456789101112131415161718192021222324
  1. <template>
  2. <view class="animated fadeIn fast">
  3. <view v-if="loadStatus == 0" class="load-more">上拉加载更多</view>
  4. <view v-if="loadStatus == 1" class="load-more">加载中</view>
  5. <view v-if="loadStatus == 2" class="load-more">没有更多数据了</view>
  6. </view>
  7. </template>
  8. <script>
  9. export default {
  10. props: {
  11. loadStatus: Number
  12. }
  13. }
  14. </script>
  15. <style scoped>
  16. .load-more {
  17. text-align: center;
  18. color: #AAAAAA;
  19. padding: 15upx;
  20. }
  21. </style>