mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[new feature] Tab: add line-height prop (#1205)
This commit is contained in:
parent
7fbe5cd789
commit
efc74f7782
@ -7,18 +7,18 @@ VantComponent({
|
||||
},
|
||||
|
||||
props: {
|
||||
title: String,
|
||||
disabled: Boolean,
|
||||
dot: Boolean,
|
||||
info: null,
|
||||
title: String,
|
||||
disabled: Boolean,
|
||||
titleStyle: String
|
||||
},
|
||||
|
||||
data: {
|
||||
width: null,
|
||||
inited: false,
|
||||
active: false,
|
||||
animated: false,
|
||||
width: null
|
||||
animated: false
|
||||
},
|
||||
|
||||
watch: {
|
||||
|
@ -69,9 +69,9 @@
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
z-index: 1;
|
||||
height: 2px;
|
||||
height: 3px;
|
||||
background-color: @red;
|
||||
border-radius: 2px;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
&--line {
|
||||
|
@ -2,10 +2,10 @@ import { VantComponent } from '../common/component';
|
||||
import { touch } from '../mixins/touch';
|
||||
|
||||
type TabItemData = {
|
||||
width?: number;
|
||||
active: boolean;
|
||||
inited?: boolean;
|
||||
animated?: boolean;
|
||||
width?: Number;
|
||||
};
|
||||
|
||||
VantComponent({
|
||||
@ -29,10 +29,17 @@ VantComponent({
|
||||
|
||||
props: {
|
||||
color: String,
|
||||
sticky: Boolean,
|
||||
animated: Boolean,
|
||||
swipeable: Boolean,
|
||||
lineWidth: {
|
||||
type: Number,
|
||||
value: -1
|
||||
},
|
||||
lineHeight: {
|
||||
type: Number,
|
||||
value: -1
|
||||
},
|
||||
active: {
|
||||
type: Number,
|
||||
value: 0
|
||||
@ -57,13 +64,10 @@ VantComponent({
|
||||
type: Number,
|
||||
value: 4
|
||||
},
|
||||
animated: Boolean,
|
||||
sticky: Boolean,
|
||||
offsetTop: {
|
||||
type: Number,
|
||||
value: 0
|
||||
},
|
||||
swipeable: Boolean
|
||||
}
|
||||
},
|
||||
|
||||
data: {
|
||||
@ -84,6 +88,7 @@ VantComponent({
|
||||
},
|
||||
color: 'setLine',
|
||||
lineWidth: 'setLine',
|
||||
lineHeight: 'setLine',
|
||||
active: 'setActiveTab',
|
||||
animated: 'setTrack',
|
||||
offsetTop: 'setWrapStyle'
|
||||
@ -149,12 +154,14 @@ VantComponent({
|
||||
color,
|
||||
active,
|
||||
duration,
|
||||
lineWidth
|
||||
lineWidth,
|
||||
lineHeight
|
||||
} = this.data;
|
||||
|
||||
this.getRect('.van-tab', true).then(rects => {
|
||||
const rect = rects[active];
|
||||
const width = (lineWidth !== -1) ? lineWidth : rect.width / 2;
|
||||
const height = lineHeight !== -1 ? `height: ${lineHeight}px;` : '';
|
||||
|
||||
let left = rects
|
||||
.slice(0, active)
|
||||
@ -164,6 +171,7 @@ VantComponent({
|
||||
|
||||
this.set({
|
||||
lineStyle: `
|
||||
${height}
|
||||
width: ${width}px;
|
||||
background-color: ${color};
|
||||
-webkit-transform: translateX(${left}px);
|
||||
|
Loading…
x
Reference in New Issue
Block a user