u-empty.vue 3.8 KB

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