mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
fix(Tabs): incorrect scroll position when inited (#11059)
This commit is contained in:
parent
2d47824ae7
commit
41cfae4aa6
@ -346,7 +346,7 @@ exports[`should have two "van-coupon-list__empty" classes when render coupon lis
|
|||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-tabs__line"
|
<div class="van-tabs__line"
|
||||||
style="transform: translateX(50px) translateX(-50%);"
|
style="transform: translateX(50px) translateX(-50%); transition-duration: 0.3s;"
|
||||||
>
|
>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -239,7 +239,10 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
const setCurrentIndex = (currentIndex: number) => {
|
const setCurrentIndex = (
|
||||||
|
currentIndex: number,
|
||||||
|
skipScrollIntoView?: boolean
|
||||||
|
) => {
|
||||||
const newIndex = findAvailableTab(currentIndex);
|
const newIndex = findAvailableTab(currentIndex);
|
||||||
|
|
||||||
if (!isDef(newIndex)) {
|
if (!isDef(newIndex)) {
|
||||||
@ -259,16 +262,31 @@ export default defineComponent({
|
|||||||
emit('change', newName, newTab.title);
|
emit('change', newName, newTab.title);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!skipScrollIntoView) {
|
||||||
|
scrollIntoView();
|
||||||
|
}
|
||||||
|
setLine();
|
||||||
|
|
||||||
|
// scroll to correct position
|
||||||
|
if (stickyFixed && !props.scrollspy) {
|
||||||
|
setRootScrollTop(
|
||||||
|
Math.ceil(getElementTop(root.value!) - offsetTopPx.value)
|
||||||
|
);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
// correct the index of active tab
|
// correct the index of active tab
|
||||||
const setCurrentIndexByName = (name: Numeric) => {
|
const setCurrentIndexByName = (
|
||||||
|
name: Numeric,
|
||||||
|
skipScrollIntoView?: boolean
|
||||||
|
) => {
|
||||||
const matched = children.find(
|
const matched = children.find(
|
||||||
(tab, index) => getTabName(tab, index) === name
|
(tab, index) => getTabName(tab, index) === name
|
||||||
);
|
);
|
||||||
|
|
||||||
const index = matched ? children.indexOf(matched) : 0;
|
const index = matched ? children.indexOf(matched) : 0;
|
||||||
setCurrentIndex(index);
|
setCurrentIndex(index, skipScrollIntoView);
|
||||||
};
|
};
|
||||||
|
|
||||||
const scrollToCurrentContent = (immediate = false) => {
|
const scrollToCurrentContent = (immediate = false) => {
|
||||||
@ -449,23 +467,8 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
watch(
|
|
||||||
() => state.currentIndex,
|
|
||||||
() => {
|
|
||||||
scrollIntoView();
|
|
||||||
setLine();
|
|
||||||
|
|
||||||
// scroll to correct position
|
|
||||||
if (stickyFixed && !props.scrollspy) {
|
|
||||||
setRootScrollTop(
|
|
||||||
Math.ceil(getElementTop(root.value!) - offsetTopPx.value)
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
const init = () => {
|
const init = () => {
|
||||||
setCurrentIndexByName(props.active);
|
setCurrentIndexByName(props.active, true);
|
||||||
nextTick(() => {
|
nextTick(() => {
|
||||||
state.inited = true;
|
state.inited = true;
|
||||||
if (wrapRef.value) {
|
if (wrapRef.value) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user