Skeleton.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <template>
  2. <view v-if="isFirst">
  3. <Skeletons :loading="loading && isFirst" :animation="true" bg-color="#FFF" />
  4. <div class="skeleton_content u-skeleton">
  5. <div class="empty_box u-skeleton-fillet"></div>
  6. <div class="banner_box u-skeleton-fillet"></div>
  7. <div class="icon_box ">
  8. <div v-for="item in 4" class="icon_item">
  9. <div class="img u-skeleton-fillet"></div>
  10. <div class="text u-skeleton-fillet"></div>
  11. </div>
  12. </div>
  13. <div class="hot_box ">
  14. <div class="left u-skeleton-fillet"></div>
  15. <div class="right ">
  16. <div class="top u-skeleton-fillet"></div>
  17. <div class="bottom u-skeleton-fillet"></div>
  18. </div>
  19. </div>
  20. <div class="new_box ">
  21. <div v-for="item in 3" class="item u-skeleton-fillet"></div>
  22. </div>
  23. <div class="hot_box ">
  24. <div class="left u-skeleton-fillet"></div>
  25. <div class="right ">
  26. <div class="top u-skeleton-fillet"></div>
  27. <div class="bottom u-skeleton-fillet"></div>
  28. </div>
  29. </div>
  30. </div>
  31. </view>
  32. </template>
  33. <script>
  34. import Skeletons from '@/components/Skeleton'
  35. export default {
  36. name: 'Skeleton',
  37. components: { Skeletons },
  38. props: {
  39. loading: {
  40. type: Boolean,
  41. default: true
  42. },
  43. isFirst: {
  44. type: Boolean,
  45. default: true
  46. }
  47. },
  48. data() {
  49. return {}
  50. },
  51. methods: {}
  52. }
  53. </script>
  54. <style
  55. lang="scss"
  56. scoped
  57. >
  58. .skeleton_content {
  59. width: 100%;
  60. height: calc(100vh - 50px);
  61. overflow-y: hidden;
  62. box-sizing: border-box;
  63. .empty_box {
  64. width: 100%;
  65. height: 140rpx;
  66. }
  67. .banner_box {
  68. width: 100%;
  69. height: 320rpx;
  70. }
  71. .icon_box {
  72. width: 100%;
  73. display: flex;
  74. align-items: center;
  75. justify-content: space-between;
  76. padding: 30rpx 60rpx;
  77. box-sizing: border-box;
  78. .icon_item {
  79. width: 80rpx;
  80. .img {
  81. width: 100%;
  82. height: 80rpx;
  83. }
  84. .text {
  85. margin-top: 20rpx;
  86. width: 100%;
  87. height: 30rpx;
  88. }
  89. }
  90. }
  91. .hot_box {
  92. width: 100%;
  93. height: 390rpx;
  94. display: flex;
  95. align-items: center;
  96. justify-content: space-between;
  97. padding: 20rpx 30rpx;
  98. box-sizing: border-box;
  99. .left {
  100. width: 49%;
  101. height: 100%;
  102. }
  103. .right {
  104. width: 49%;
  105. height: 100%;
  106. display: flex;
  107. flex-direction: column;
  108. justify-content: space-between;
  109. .top,
  110. .bottom {
  111. width: 100%;
  112. height: 49%;
  113. }
  114. }
  115. }
  116. .new_box {
  117. width: 100%;
  118. height: 390rpx;
  119. display: flex;
  120. align-items: center;
  121. justify-content: space-between;
  122. padding: 20rpx 30rpx;
  123. box-sizing: border-box;
  124. .item {
  125. width: 30%;
  126. height: 100%;
  127. }
  128. }
  129. }
  130. </style>