mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[bugfix] Tabs:修复开启animated时导致的滚动问题 (#1030)
This commit is contained in:
parent
148938f039
commit
7a77aa69a7
@ -104,7 +104,7 @@
|
||||
wx:key="index"
|
||||
title="{{ '标签' + item }}"
|
||||
>
|
||||
<view class="content" style="height: 1000px;">
|
||||
<view class="content">
|
||||
{{ '内容' + item }}
|
||||
</view>
|
||||
</van-tab>
|
||||
|
@ -58,7 +58,7 @@
|
||||
| scrollable | 是否在长度溢出时滚动播放 | `Boolean` | `true` |
|
||||
| left-icon | 左侧图标图片 URL | `String` | - |
|
||||
| color | 文本颜色 | `String` | `#ed6a0c` |
|
||||
| background | 滚动条背景 | `String` | `#fffbe8` |
|
||||
| backgroundColor | 滚动条背景 | `String` | `#fffbe8` |
|
||||
| open-type | 微信开放能力 | `String` | `navigate` |
|
||||
|
||||
### Event
|
||||
|
@ -1,7 +1,13 @@
|
||||
.van-tab__pane {
|
||||
box-sizing: border-box;
|
||||
overflow-y: auto;
|
||||
|
||||
&--float {
|
||||
float: left;
|
||||
&--active {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
&--inactive {
|
||||
height: 0px;
|
||||
overflow: visible;
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
<view
|
||||
wx:if="{{ animated || inited }}"
|
||||
class="custom-class van-tab__pane {{ animated ? 'van-tab__pane--float' : '' }}"
|
||||
class="custom-class van-tab__pane {{ active ? 'van-tab__pane--active' : 'van-tab__pane--inactive' }}"
|
||||
style="{{ animated || active ? '' : 'display: none;' }} {{ width ? 'width:' + width + 'px;' : '' }}"
|
||||
>
|
||||
<slot />
|
||||
|
@ -94,6 +94,10 @@
|
||||
&__content {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
&__track {
|
||||
position: relative;
|
||||
}
|
||||
}
|
||||
|
||||
.van-tab {
|
||||
|
@ -189,8 +189,9 @@ VantComponent({
|
||||
this.set({
|
||||
trackStyle: `
|
||||
width: ${width * this.child.length}px;
|
||||
transform: translateX(${-1 * active * width}px);
|
||||
transition-duration: ${duration}s;
|
||||
left: ${-1 * active * width}px;
|
||||
transition: left ${duration}s;
|
||||
display: flex;
|
||||
`
|
||||
});
|
||||
this.setTabsProps({
|
||||
|
Loading…
x
Reference in New Issue
Block a user