index.vue 536 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <el-empty
  3. class="empty-box"
  4. :image-size="200"
  5. image="https://cdn-ali2.jianyu360.com/frontRouter/pc/mesgCenter/image/no-mesg.png"
  6. >
  7. <template v-slot:description>
  8. <span class="tip-text">{{ tip }}</span>
  9. </template>
  10. <slot></slot>
  11. </el-empty>
  12. </template>
  13. <script>
  14. export default {
  15. name: 'EmptyTip',
  16. props: {
  17. tip: {
  18. type: String,
  19. default: '暂无数据'
  20. }
  21. }
  22. }
  23. </script>
  24. <style scoped>
  25. .tip-text {
  26. font-size: 14px;
  27. color: #999999;
  28. line-height: 22px;
  29. }
  30. </style>