u-line.vue 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <template>
  2. <view class="u-line" :style="[lineStyle]"></view>
  3. </template>
  4. <script>
  5. import props from './props.js';
  6. import mixin from '../../libs/mixin/mixin'
  7. import mpMixin from '../../libs/mixin/mpMixin';
  8. /**
  9. * line 线条
  10. * @description 此组件一般用于显示一根线条,用于分隔内容块,有横向和竖向两种模式,且能设置0.5px线条,使用也很简单
  11. * @tutorial https://uview.d3u.cn/components/line.html
  12. * @property {String} color 线条的颜色 ( 默认 '#d6d7d9' )
  13. * @property {String | Number} length 长度,竖向时表现为高度,横向时表现为长度,可以为百分比,带px单位的值等 ( 默认 '100%' )
  14. * @property {String} direction 线条的方向,row-横向,col-竖向 (默认 'row' )
  15. * @property {Boolean} hairline 是否显示细线条 (默认 true )
  16. * @property {String | Number} margin 线条与上下左右元素的间距,字符串形式,如"30px" (默认 0 )
  17. * @property {Boolean} dashed 是否虚线,true-虚线,false-实线 (默认 false )
  18. * @property {Object} customStyle 定义需要用到的外部样式
  19. * @example <u-line color="red"></u-line>
  20. */
  21. export default {
  22. name: 'u-line',
  23. mixins: [mpMixin, mixin, props],
  24. computed: {
  25. lineStyle() {
  26. const style = {}
  27. style.margin = this.margin
  28. // 如果是水平线条,边框高度为1px,再通过transform缩小一半,就是0.5px了
  29. if (this.direction === 'row') {
  30. // 此处采用兼容分开写,兼容nvue的写法
  31. style.borderBottomWidth = '1px'
  32. style.borderBottomStyle = this.dashed ? 'dashed' : 'solid'
  33. style.width = uni.$u.addUnit(this.length)
  34. if (this.hairline) style.transform = 'scaleY(0.5)'
  35. } else {
  36. // 如果是竖向线条,边框宽度为1px,再通过transform缩小一半,就是0.5px了
  37. style.borderLeftWidth = '1px'
  38. style.borderLeftStyle = this.dashed ? 'dashed' : 'solid'
  39. style.height = uni.$u.addUnit(this.length)
  40. if (this.hairline) style.transform = 'scaleX(0.5)'
  41. }
  42. style.borderColor = this.color
  43. return uni.$u.deepMerge(style, uni.$u.addStyle(this.customStyle))
  44. }
  45. }
  46. }
  47. </script>
  48. <style lang="scss" scoped>
  49. @import "../../libs/css/components.scss";
  50. .u-line {
  51. /* #ifndef APP-NVUE */
  52. vertical-align: middle;
  53. /* #endif */
  54. }
  55. </style>