146 lines
4.0 KiB
Vue
146 lines
4.0 KiB
Vue
<template>
|
||
<view
|
||
class="u-divider"
|
||
:class="customClass"
|
||
:style="
|
||
$u.toStyle(
|
||
{
|
||
height: height === 'auto' ? 'auto' : height + 'rpx',
|
||
backgroundColor: bgColor,
|
||
marginBottom: marginBottom + 'rpx',
|
||
marginTop: marginTop + 'rpx'
|
||
},
|
||
customStyle
|
||
)
|
||
"
|
||
@tap="onClick"
|
||
>
|
||
<view
|
||
class="u-divider-line"
|
||
:class="[type ? 'u-divider-line--bordercolor--' + type : '']"
|
||
:style="lineStyle"
|
||
></view>
|
||
<view
|
||
v-if="useSlot"
|
||
class="u-divider-text"
|
||
:style="{
|
||
color: color,
|
||
fontSize: fontSize + 'rpx'
|
||
}"
|
||
><slot
|
||
/></view>
|
||
<view
|
||
class="u-divider-line"
|
||
:class="[type ? 'u-divider-line--bordercolor--' + type : '']"
|
||
:style="lineStyle"
|
||
></view>
|
||
</view>
|
||
</template>
|
||
|
||
<script lang="ts">
|
||
export default {
|
||
name: 'u-divider',
|
||
options: {
|
||
addGlobalClass: true,
|
||
// #ifndef MP-TOUTIAO
|
||
virtualHost: true,
|
||
// #endif
|
||
styleIsolation: 'shared'
|
||
}
|
||
};
|
||
</script>
|
||
|
||
<script setup lang="ts">
|
||
import { computed } from 'vue';
|
||
import { DividerProps } from './types';
|
||
import { $u } from '../../';
|
||
|
||
/**
|
||
* divider 分割线
|
||
* @description 区隔内容的分割线,一般用于页面底部"没有更多"的提示。
|
||
* @tutorial https://uviewpro.cn/zh/components/divider.html
|
||
* @property {String Number} half-width 文字左或右边线条宽度,数值或百分比,数值时单位为rpx
|
||
* @property {String} border-color 线条颜色,优先级高于type(默认var(--u-border-color))
|
||
* @property {String} color 文字颜色(默认var(--u-tips-color))
|
||
* @property {String Number} fontSize 字体大小,单位rpx(默认26)
|
||
* @property {String} bg-color 整个divider的背景颜色(默认呢var(--u-bg-white))
|
||
* @property {String Number} height 整个divider的高度,单位rpx(默认40)
|
||
* @property {String} type 将线条设置主题色(默认primary)
|
||
* @property {Boolean} useSlot 是否使用slot传入内容,如果不传入,中间不会有空隙(默认true)
|
||
* @property {String Number} margin-top 与前一个组件的距离,单位rpx(默认0)
|
||
* @property {String Number} margin-bottom 与后一个组件的距离,单位rpx(0)
|
||
* @event {Function} click divider组件被点击时触发
|
||
* @example <u-divider color="var(--u-type-error)">长河落日圆</u-divider>
|
||
*/
|
||
const props = defineProps(DividerProps);
|
||
|
||
const emit = defineEmits(['click']);
|
||
|
||
/**
|
||
* divider横线样式
|
||
*/
|
||
const lineStyle = computed(() => {
|
||
let style: Record<string, string> = {};
|
||
if (String(props.halfWidth).indexOf('%') !== -1) style.width = String(props.halfWidth);
|
||
else style.width = props.halfWidth + 'rpx';
|
||
// borderColor优先级高于type值
|
||
if (props.borderColor) style.borderColor = props.borderColor;
|
||
return style;
|
||
});
|
||
|
||
/**
|
||
* divider组件被点击时触发
|
||
*/
|
||
function onClick() {
|
||
emit('click');
|
||
}
|
||
</script>
|
||
|
||
<style lang="scss" scoped>
|
||
@import '../../libs/css/style.components.scss';
|
||
.u-divider {
|
||
width: 100%;
|
||
position: relative;
|
||
text-align: center;
|
||
@include vue-flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
overflow: hidden;
|
||
flex-direction: row;
|
||
}
|
||
|
||
.u-divider-line {
|
||
border-bottom: 1px solid $u-border-color;
|
||
transform: scale(1, 0.5);
|
||
transform-origin: center;
|
||
|
||
&--bordercolor--primary {
|
||
border-color: $u-type-primary;
|
||
}
|
||
|
||
&--bordercolor--success {
|
||
border-color: $u-type-success;
|
||
}
|
||
|
||
&--bordercolor--error {
|
||
border-color: $u-type-primary;
|
||
}
|
||
|
||
&--bordercolor--info {
|
||
border-color: $u-type-info;
|
||
}
|
||
|
||
&--bordercolor--warning {
|
||
border-color: $u-type-warning;
|
||
}
|
||
}
|
||
|
||
.u-divider-text {
|
||
white-space: nowrap;
|
||
padding: 0 16rpx;
|
||
/* #ifndef APP-NVUE */
|
||
display: inline-flex;
|
||
/* #endif */
|
||
}
|
||
</style>
|