1
0

u-divider.vue 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. <template>
  2. <view class="u-divider" :style="{
  3. height: height == 'auto' ? 'auto' : height + 'rpx',
  4. backgroundColor: bgColor,
  5. marginBottom: marginBottom + 'rpx',
  6. marginTop: marginTop + 'rpx',
  7. paddingBottom: paddingBottom + 'rpx',
  8. }" @tap="click">
  9. <view class="u-divider-line" :class="[type ? 'u-divider-line--bordercolor--' + type : '']" :style="[lineStyle]"></view>
  10. <view v-if="useSlot" class="u-divider-text" :style="{
  11. color: color,
  12. fontSize: fontSize + 'rpx'
  13. }"><slot /></view>
  14. <view class="u-divider-line" :class="[type ? 'u-divider-line--bordercolor--' + type : '']" :style="[lineStyle]"></view>
  15. </view>
  16. </template>
  17. <script>
  18. /**
  19. * divider 分割线
  20. * @description 区隔内容的分割线,一般用于页面底部"没有更多"的提示。
  21. * @tutorial https://www.uviewui.com/components/divider.html
  22. * @property {String Number} half-width 文字左或右边线条宽度,数值或百分比,数值时单位为rpx
  23. * @property {String} border-color 线条颜色,优先级高于type(默认#dcdfe6)
  24. * @property {String} color 文字颜色(默认#909399)
  25. * @property {String Number} fontSize 字体大小,单位rpx(默认26)
  26. * @property {String} bg-color 整个divider的背景颜色(默认呢#ffffff)
  27. * @property {String Number} height 整个divider的高度,单位rpx(默认40)
  28. * @property {String} type 将线条设置主题色(默认primary)
  29. * @property {Boolean} useSlot 是否使用slot传入内容,如果不传入,中间不会有空隙(默认true)
  30. * @property {String Number} margin-top 与前一个组件的距离,单位rpx(默认0)
  31. * @property {String Number} margin-bottom 与后一个组件的距离,单位rpx(0)
  32. * @event {Function} click divider组件被点击时触发
  33. * @example <u-divider color="#fa3534">长河落日圆</u-divider>
  34. */
  35. export default {
  36. name: 'u-divider',
  37. props: {
  38. // 单一边divider横线的宽度(数值),单位rpx。或者百分比
  39. halfWidth: {
  40. type: [Number, String],
  41. default: 150
  42. },
  43. // divider横线的颜色,如设置,
  44. borderColor: {
  45. type: String,
  46. default: '#dcdfe6'
  47. },
  48. // 主题色,可以是primary|info|success|warning|error之一值
  49. type: {
  50. type: String,
  51. default: 'primary'
  52. },
  53. // 文字颜色
  54. color: {
  55. type: String,
  56. default: '#909399'
  57. },
  58. // 文字大小,单位rpx
  59. fontSize: {
  60. type: [Number, String],
  61. default: 26
  62. },
  63. // 整个divider的背景颜色
  64. bgColor: {
  65. type: String,
  66. default: '#ffffff'
  67. },
  68. // 整个divider的高度单位rpx
  69. height: {
  70. type: [Number, String],
  71. default: 'auto'
  72. },
  73. // 上边距
  74. marginTop: {
  75. type: [String, Number],
  76. default: 0
  77. },
  78. // 下边距
  79. marginBottom: {
  80. type: [String, Number],
  81. default: 0
  82. },
  83. // 下内边距(如果本组件下面没有其他元素了,则用marginBottom会无效,需要用paddingBottom)
  84. paddingBottom: {
  85. type: [String, Number],
  86. default: 0
  87. },
  88. // 是否使用slot传入内容,如果不用slot传入内容,先的中间就不会有空隙
  89. useSlot: {
  90. type: Boolean,
  91. default: true
  92. }
  93. },
  94. computed: {
  95. lineStyle() {
  96. let style = {};
  97. if(String(this.halfWidth).indexOf('%') != -1) style.width = this.halfWidth;
  98. else style.width = this.halfWidth + 'rpx';
  99. // borderColor优先级高于type值
  100. if(this.borderColor) style.borderColor = this.borderColor;
  101. return style;
  102. }
  103. },
  104. methods: {
  105. click() {
  106. this.$emit('click');
  107. }
  108. }
  109. };
  110. </script>
  111. <style lang="scss" scoped>
  112. @import "../../libs/css/style.components.scss";
  113. .u-divider {
  114. width: 100%;
  115. position: relative;
  116. text-align: center;
  117. @include vue-flex;
  118. justify-content: center;
  119. align-items: center;
  120. overflow: hidden;
  121. flex-direction: row;
  122. }
  123. .u-divider-line {
  124. border-bottom: 1px solid $u-border-color;
  125. transform: scale(1, 0.5);
  126. transform-origin: center;
  127. &--bordercolor--primary {
  128. border-color: $u-type-primary;
  129. }
  130. &--bordercolor--success {
  131. border-color: $u-type-success;
  132. }
  133. &--bordercolor--error {
  134. border-color: $u-type-primary;
  135. }
  136. &--bordercolor--info {
  137. border-color: $u-type-info;
  138. }
  139. &--bordercolor--warning {
  140. border-color: $u-type-warning;
  141. }
  142. }
  143. .u-divider-text {
  144. white-space: nowrap;
  145. padding: 0 16rpx;
  146. /* #ifndef APP-NVUE */
  147. display: inline-flex;
  148. /* #endif */
  149. }
  150. </style>