uLi-load-more.vue 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. <template>
  2. <view class="uni-load-more">
  3. <view class="uni-load-more__img" v-if="status === 'loading' && showIcon"><view class="loadingView" :style="{ color: color }">&#xeacd;</view></view>
  4. <text class="uni-load-more__text" :style="{ color: color }">
  5. {{ status === 'more' ? contentText.contentdown : status === 'loading' ? contentText.contentrefresh : contentText.contentnomore }}
  6. </text>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. name: 'uLi-load-more',
  12. props: {
  13. status: {
  14. //上拉的状态:more-loading前;loading-loading中;noMore-没有更多了
  15. type: String,
  16. default: 'loading'
  17. },
  18. showIcon: {
  19. type: Boolean,
  20. default: true
  21. },
  22. color: {
  23. type: String,
  24. default: '#777777'
  25. },
  26. contentText: {
  27. type: Object,
  28. default() {
  29. return {
  30. contentdown: '上拉显示更多',
  31. contentrefresh: '正在加载...',
  32. contentnomore: '没有更多数据了'
  33. };
  34. }
  35. }
  36. },
  37. data() {
  38. return {};
  39. }
  40. };
  41. </script>
  42. <style lang="scss" scoped>
  43. @font-face {
  44. font-family: 'iconfont';
  45. src: url('https://at.alicdn.com/t/font_1288772_8nmx02hevxl.ttf') format('truetype');
  46. }
  47. .loadingView {
  48. font-family: iconfont;
  49. line-height: 1;
  50. font-size: 40upx;
  51. animation: rotate 3s linear infinite; //linear// 意思就是匀速的运动 infinite// 就是无限滚动的意思
  52. }
  53. @keyframes rotate {
  54. from {
  55. transform: rotate(0deg);
  56. }
  57. to {
  58. transform: rotate(360deg);
  59. }
  60. }
  61. .uni-load-more {
  62. display: flex;
  63. flex-direction: row;
  64. height: 80upx;
  65. align-items: center;
  66. justify-content: center;
  67. &__text {
  68. font-size: 28upx;
  69. color: $uni-text-color-grey;
  70. }
  71. &__img {
  72. height: 24px;
  73. width: 24px;
  74. margin-right: 10px;
  75. line-height: 1;
  76. display: flex;
  77. align-items: center;
  78. justify-content: center;
  79. }
  80. }
  81. </style>