empty.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <template>
  2. <div
  3. class="empty"
  4. v-if="show"
  5. :style="{
  6. marginTop: marginTop + 'px',
  7. }"
  8. >
  9. <img
  10. :style="{ imgWidth: imgWidth + 'px', imgHeight: imgHeight + 'px' }"
  11. v-if="imgSrc"
  12. :src="imgSrc"
  13. alt=""
  14. />
  15. <div
  16. :style="{ color: color, fontSize: fontSize + 'px', marginTop: '10px' }"
  17. >
  18. {{ text }}
  19. </div>
  20. <div class="slot-wrap">
  21. <slot name="bottom"></slot>
  22. </div>
  23. </div>
  24. </template>
  25. <script>
  26. export default {
  27. name: "empty",
  28. components: {},
  29. props: {
  30. // 图片路径
  31. imgSrc: {
  32. type: String,
  33. default: "",
  34. },
  35. // 提示文字
  36. text: {
  37. type: String,
  38. default: "暂无内容",
  39. },
  40. // 文字大小,单位rpx
  41. fontSize: {
  42. type: [String, Number],
  43. default: 26,
  44. },
  45. // 文字颜色
  46. color: {
  47. type: String,
  48. default: "#c0c4cc",
  49. },
  50. // 图标宽度,单位px
  51. imgWidth: {
  52. type: [String, Number],
  53. default: 120,
  54. },
  55. // 图标高度,单位px
  56. imgHeight: {
  57. type: [String, Number],
  58. default: "auto",
  59. },
  60. // 是否显示组件
  61. show: {
  62. type: Boolean,
  63. default: true,
  64. },
  65. // 组件距离上一个元素之间的距离
  66. marginTop: {
  67. type: [String, Number],
  68. default: 24,
  69. },
  70. },
  71. data() {
  72. return {};
  73. },
  74. created() {},
  75. methods: {},
  76. };
  77. </script>
  78. <style lang='scss' scoped>
  79. .empty {
  80. padding: 10px;
  81. text-align: center;
  82. }
  83. </style>