mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
[improvement] Tabbar: optimize performance (#1362)
This commit is contained in:
parent
01da68bcf9
commit
dee02a09a8
@ -35,26 +35,25 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
|
|
||||||
data: {
|
data: {
|
||||||
items: [],
|
items: []
|
||||||
currentActive: -1
|
|
||||||
},
|
},
|
||||||
|
|
||||||
watch: {
|
watch: {
|
||||||
active(active) {
|
active(active) {
|
||||||
this.set({ currentActive: active });
|
this.currentActive = active;
|
||||||
this.setActiveItem();
|
this.setActiveItem();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
created() {
|
created() {
|
||||||
this.set({ currentActive: this.data.active });
|
this.currentActive = this.data.active;
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
setActiveItem() {
|
setActiveItem() {
|
||||||
this.data.items.forEach((item, index) => {
|
this.data.items.forEach((item, index) => {
|
||||||
item.setActive({
|
item.setActive({
|
||||||
active: index === this.data.currentActive,
|
active: index === this.currentActive,
|
||||||
color: this.data.activeColor
|
color: this.data.activeColor
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@ -62,9 +61,9 @@ VantComponent({
|
|||||||
|
|
||||||
onChange(child) {
|
onChange(child) {
|
||||||
const active = this.data.items.indexOf(child);
|
const active = this.data.items.indexOf(child);
|
||||||
if (active !== this.data.currentActive && active !== -1) {
|
if (active !== this.currentActive && active !== -1) {
|
||||||
this.$emit('change', active);
|
this.$emit('change', active);
|
||||||
this.set({ currentActive: active });
|
this.currentActive = active;
|
||||||
this.setActiveItem();
|
this.setActiveItem();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user