workCardSkeleton.vue 852 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <template>
  2. <div class="skeleton">
  3. <div class="image"></div>
  4. <div class="title"></div>
  5. <div class="bottom">
  6. <div class="left"></div>
  7. <div class="right"></div>
  8. </div>
  9. </div>
  10. </template>
  11. <style lang="less" scoped>
  12. .skeleton {
  13. height: 100%;
  14. background: #fff;
  15. .image {
  16. width: 100%;
  17. height: 240px;
  18. background: #F7F8FA;
  19. }
  20. .title {
  21. width: 147px;
  22. height: 20px;
  23. background: #F7F8FA;
  24. border-radius: 10px;
  25. margin-top: 16px;
  26. margin-left: 14px;
  27. }
  28. .bottom {
  29. margin: 18px 14px 14px 14px;
  30. display: flex;
  31. justify-content: space-between;
  32. .left {
  33. width: 80px;
  34. height: 14px;
  35. background: #F7F8FA;
  36. border-radius: 10px;
  37. }
  38. .right {
  39. width: 42px;
  40. height: 14px;
  41. background: #F7F8FA;
  42. border-radius: 10px;
  43. }
  44. }
  45. }
  46. </style>