u-empty.vue 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. <template>
  2. <view
  3. class="u-empty"
  4. :style="[emptyStyle]"
  5. v-if="show"
  6. >
  7. <u-icon
  8. v-if="!isSrc"
  9. :name="mode === 'message' ? 'chat' : `empty-${mode}`"
  10. :size="iconSize"
  11. :color="iconColor"
  12. margin-top="14"
  13. ></u-icon>
  14. <image
  15. v-else
  16. :style="{
  17. width: $u.addUnit(width),
  18. height: $u.addUnit(height),
  19. }"
  20. :src="icon"
  21. mode="widthFix"
  22. ></image>
  23. <text
  24. class="u-empty__text"
  25. :style="[textStyle]"
  26. >{{text ? text : icons[mode]}}</text>
  27. <view class="u-empty__wrap" v-if="$slots.default || $slots.$default">
  28. <slot />
  29. </view>
  30. </view>
  31. </template>
  32. <script>
  33. import props from './props.js';
  34. /**
  35. * empty 内容为空
  36. * @description 该组件用于需要加载内容,但是加载的第一页数据就为空,提示一个"没有内容"的场景, 我们精心挑选了十几个场景的图标,方便您使用。
  37. * @tutorial https://www.uviewui.com/components/empty.html
  38. * @property {String} icon 内置图标名称,或图片路径,建议绝对路径
  39. * @property {String} text 提示文字
  40. * @property {String} textColor 文字颜色 (默认 '#c0c4cc' )
  41. * @property {String | Number} textSize 文字大小 (默认 14 )
  42. * @property {String} iconColor 图标的颜色 (默认 '#c0c4cc' )
  43. * @property {String | Number} iconSize 图标的大小 (默认 90 )
  44. * @property {String} mode 选择预置的图标类型 (默认 'data' )
  45. * @property {String | Number} width 图标宽度,单位px (默认 160 )
  46. * @property {String | Number} height 图标高度,单位px (默认 160 )
  47. * @property {Boolean} show 是否显示组件 (默认 true )
  48. * @property {String | Number} marginTop 组件距离上一个元素之间的距离,默认px单位 (默认 0 )
  49. * @property {Object} customStyle 定义需要用到的外部样式
  50. *
  51. * @event {Function} click 点击组件时触发
  52. * @event {Function} close 点击关闭按钮时触发
  53. * @example <u-empty text="所谓伊人,在水一方" mode="list"></u-empty>
  54. */
  55. export default {
  56. name: "u-empty",
  57. mixins: [uni.$u.mpMixin, uni.$u.mixin, props],
  58. data() {
  59. return {
  60. icons: {
  61. car: '购物车为空',
  62. page: '页面不存在',
  63. search: '没有搜索结果',
  64. address: '没有收货地址',
  65. wifi: '没有WiFi',
  66. order: '订单为空',
  67. coupon: '没有优惠券',
  68. favor: '暂无收藏',
  69. permission: '无权限',
  70. history: '无历史记录',
  71. news: '无新闻列表',
  72. message: '消息列表为空',
  73. list: '列表为空',
  74. data: '数据为空',
  75. comment: '暂无评论',
  76. }
  77. }
  78. },
  79. computed: {
  80. // 组件样式
  81. emptyStyle() {
  82. const style = {}
  83. style.marginTop = uni.$u.addUnit(this.marginTop)
  84. // 合并customStyle样式,此参数通过mixin中的props传递
  85. return uni.$u.deepMerge(uni.$u.addStyle(this.customStyle), style)
  86. },
  87. // 文本样式
  88. textStyle() {
  89. const style = {}
  90. style.color = this.textColor
  91. style.fontSize = uni.$u.addUnit(this.textSize)
  92. return style
  93. },
  94. // 判断icon是否图片路径
  95. isSrc() {
  96. return this.icon.indexOf('/') >= 0
  97. }
  98. }
  99. }
  100. </script>
  101. <style lang="scss" scoped>
  102. @import '../../libs/css/components.scss';
  103. $u-empty-text-margin-top:20rpx !default;
  104. $u-empty-slot-margin-top:20rpx !default;
  105. .u-empty {
  106. @include flex;
  107. flex-direction: column;
  108. justify-content: center;
  109. align-items: center;
  110. &__text {
  111. @include flex;
  112. justify-content: center;
  113. align-items: center;
  114. margin-top: $u-empty-text-margin-top;
  115. }
  116. }
  117. .u-slot-wrap {
  118. @include flex;
  119. justify-content: center;
  120. align-items: center;
  121. margin-top:$u-empty-slot-margin-top;
  122. }
  123. </style>