fix(Tab): set container when change active (#2817)

fix #2782
This commit is contained in:
rex 2020-03-03 19:29:21 +08:00 committed by GitHub
parent 3adba1a67b
commit a54f0af5dd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 3 deletions

View File

@ -30,6 +30,7 @@ VantComponent({
}
this.observeContainer();
this.updateFixed();
}
}
},
@ -63,6 +64,22 @@ VantComponent({
);
},
updateFixed() {
Promise.all([this.getRect(ROOT_ELEMENT), this.getContainerRect()]).then(
([
content,
container
]: WechatMiniprogram.BoundingClientRectCallbackResult[]) => {
this.setData({ height: content.height });
this.containerHeight = container.height;
wx.nextTick(() => {
this.setFixed(content.top);
});
}
);
},
disconnectObserver(observerName?: string) {
if (observerName) {
const observer: WechatMiniprogram.IntersectionObserver = this[

View File

@ -114,15 +114,19 @@ VantComponent({
},
mounted() {
this.setData({
container: () => this.createSelectorQuery().select('.van-tabs')
}, () => {
wx.nextTick(() => {
this.setLine(true);
this.scrollIntoView();
});
},
methods: {
updateContainer() {
this.setData({
container: () => this.createSelectorQuery().select('.van-tabs')
});
},
updateTabs() {
const { children = [], data } = this;
this.setData({
@ -203,6 +207,7 @@ VantComponent({
wx.nextTick(() => {
this.setLine();
this.scrollIntoView();
this.updateContainer();
this.trigger('input');
if (shouldEmitChange) {