empty.vue 669 B

12345678910111213141516171819202122232425262728293031323334
  1. <template>
  2. <div class="data-empty">
  3. <div class="data-empty-icon" style="width: 200px;">
  4. </div>
  5. <p>暂无内容</p>
  6. <slot></slot>
  7. </div>
  8. </template>
  9. <style lang="scss" scoped>
  10. .data-empty {
  11. margin-top: 100px;
  12. display: flex;
  13. flex-direction: column;
  14. justify-content: center;
  15. align-items: center;
  16. padding-bottom: 100px;
  17. p {
  18. // margin-top: 24px;
  19. text-align: center;
  20. font-size: 14px;
  21. font-weight: 400;
  22. color: #828c99;
  23. line-height: 21px;
  24. }
  25. }
  26. .data-empty-icon{
  27. min-height: 149px;
  28. background: url('~@/assets/img/frontend/personal/empty_icon.png') no-repeat center center;
  29. background-size: 166px 149px;
  30. }
  31. </style>