diff --git a/packages/tab/index.ts b/packages/tab/index.ts index 81da6076..00889864 100644 --- a/packages/tab/index.ts +++ b/packages/tab/index.ts @@ -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: { diff --git a/packages/tabs/index.less b/packages/tabs/index.less index 1bc01485..ad485e94 100644 --- a/packages/tabs/index.less +++ b/packages/tabs/index.less @@ -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 { diff --git a/packages/tabs/index.ts b/packages/tabs/index.ts index ccd67e5c..75c867e3 100644 --- a/packages/tabs/index.ts +++ b/packages/tabs/index.ts @@ -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);