mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[new feature] Tab: add border prop (#595)
This commit is contained in:
parent
7a878dd0e2
commit
19a89d38d2
1
.gitignore
vendored
1
.gitignore
vendored
@ -7,3 +7,4 @@ node_modules
|
|||||||
project.config.json
|
project.config.json
|
||||||
docs/dist
|
docs/dist
|
||||||
example/dist
|
example/dist
|
||||||
|
.history
|
||||||
|
@ -117,7 +117,8 @@ Page({
|
|||||||
|-----------|-----------|-----------|-------------|
|
|-----------|-----------|-----------|-------------|
|
||||||
| active | 当前激活标签的索引 | `String` `Number` | `0` |
|
| active | 当前激活标签的索引 | `String` `Number` | `0` |
|
||||||
| color | 标签颜色 | `String` | `#f44` |
|
| color | 标签颜色 | `String` | `#f44` |
|
||||||
| type | 样式风格,可选值为 `card` | `String` | `line` |
|
| type | 样式风格,可选值为`card` | `String` | `line` |
|
||||||
|
| border | 是否展示外边框,仅在`line`风格下生效 | `Boolean` | `true` |
|
||||||
| duration | 动画时间 (单位秒) | `Number` | `0.2` |
|
| duration | 动画时间 (单位秒) | `Number` | `0.2` |
|
||||||
| line-width | 底部条宽度 (px) | `Number` | 与当前标签等宽 |
|
| line-width | 底部条宽度 (px) | `Number` | 与当前标签等宽 |
|
||||||
| swipe-threshold | 滚动阈值,设置标签数量超过多少个可滚动 | `Number` | `4` |
|
| swipe-threshold | 滚动阈值,设置标签数量超过多少个可滚动 | `Number` | `4` |
|
||||||
|
@ -42,6 +42,10 @@ create({
|
|||||||
type: String,
|
type: String,
|
||||||
value: 'line'
|
value: 'line'
|
||||||
},
|
},
|
||||||
|
border: {
|
||||||
|
type: Boolean,
|
||||||
|
value: true
|
||||||
|
},
|
||||||
duration: {
|
duration: {
|
||||||
type: Number,
|
type: Number,
|
||||||
value: 0.2
|
value: 0.2
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<view class="van-tabs van-tabs--{{ type }}">
|
<view class="van-tabs van-tabs--{{ type }}">
|
||||||
<view class="van-tabs__wrap {{ scrollable ? 'van-tabs__wrap--scrollable' : '' }} {{ type === 'line' ? 'van-hairline--top-bottom' : '' }}">
|
<view class="van-tabs__wrap {{ scrollable ? 'van-tabs__wrap--scrollable' : '' }} {{ type === 'line' && border ? 'van-hairline--top-bottom' : '' }}">
|
||||||
<scroll-view
|
<scroll-view
|
||||||
scroll-x="{{ scrollable }}"
|
scroll-x="{{ scrollable }}"
|
||||||
scroll-with-animation
|
scroll-with-animation
|
||||||
|
Loading…
x
Reference in New Issue
Block a user