69 lines
2.3 KiB
Vue
69 lines
2.3 KiB
Vue
|
|
<template>
|
|||
|
|
<view class="u-line" :style="lineStyle"></view>
|
|||
|
|
</template>
|
|||
|
|
|
|||
|
|
<script lang="ts">
|
|||
|
|
export default {
|
|||
|
|
name: 'u-line',
|
|||
|
|
options: {
|
|||
|
|
addGlobalClass: true,
|
|||
|
|
// #ifndef MP-TOUTIAO
|
|||
|
|
virtualHost: true,
|
|||
|
|
// #endif
|
|||
|
|
styleIsolation: 'shared'
|
|||
|
|
}
|
|||
|
|
};
|
|||
|
|
</script>
|
|||
|
|
|
|||
|
|
<script setup lang="ts">
|
|||
|
|
import { computed } from 'vue';
|
|||
|
|
import { $u } from '../..';
|
|||
|
|
import { LineProps } from './types';
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* line 线条
|
|||
|
|
* @description 此组件一般用于显示一根线条,用于分隔内容块,有横向和竖向两种模式,且能设置0.5px线条,使用也很简单
|
|||
|
|
* @tutorial https://uviewpro.cn/zh/components/line.html
|
|||
|
|
* @property {String} color 线条的颜色(默认var(--u-border-color))
|
|||
|
|
* @property {String} length 长度,竖向时表现为高度,横向时表现为长度,可以为百分比,带rpx单位的值等
|
|||
|
|
* @property {String} direction 线条的方向,row-横向,col-竖向(默认row)
|
|||
|
|
* @property {String} border-style 线条的类型,solid-实线,dashed-方形虚线,dotted-圆点虚线(默认solid)
|
|||
|
|
* @property {Boolean} hair-line 是否显示细线条(默认true)
|
|||
|
|
* @property {String} margin 线条与上下左右元素的间距,字符串形式,如"30rpx"
|
|||
|
|
* @example <u-line color="red"></u-line>
|
|||
|
|
*/
|
|||
|
|
const props = defineProps(LineProps);
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 线条样式
|
|||
|
|
*/
|
|||
|
|
const lineStyle = computed(() => {
|
|||
|
|
let style: Record<string, string> = {};
|
|||
|
|
style.margin = props.margin;
|
|||
|
|
// 如果是水平线条,边框高度为1px,再通过transform缩小一半,就是0.5px了
|
|||
|
|
if (props.direction === 'row') {
|
|||
|
|
// 此处采用兼容分开写,兼容nvue的写法
|
|||
|
|
style.borderBottomWidth = '1px';
|
|||
|
|
style.borderBottomStyle = props.borderStyle;
|
|||
|
|
style.width = $u.addUnit(props.length);
|
|||
|
|
if (props.hairLine) style.transform = 'scaleY(0.5)';
|
|||
|
|
} else {
|
|||
|
|
// 如果是竖向线条,边框宽度为1px,再通过transform缩小一半,就是0.5px了
|
|||
|
|
style.borderLeftWidth = '1px';
|
|||
|
|
style.borderLeftStyle = props.borderStyle;
|
|||
|
|
style.height = $u.addUnit(props.length);
|
|||
|
|
if (props.hairLine) style.transform = 'scaleX(0.5)';
|
|||
|
|
}
|
|||
|
|
style.borderColor = props.color;
|
|||
|
|
return style;
|
|||
|
|
});
|
|||
|
|
</script>
|
|||
|
|
|
|||
|
|
<style scoped lang="scss">
|
|||
|
|
@import '../../libs/css/style.components.scss';
|
|||
|
|
|
|||
|
|
.u-line {
|
|||
|
|
vertical-align: middle;
|
|||
|
|
}
|
|||
|
|
</style>
|