mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-06 03:58:05 +08:00
73 lines
1.6 KiB
TypeScript
73 lines
1.6 KiB
TypeScript
import { VantComponent } from '../common/component';
|
|
import { iphonex } from '../mixins/iphonex';
|
|
|
|
VantComponent({
|
|
mixins: [iphonex],
|
|
|
|
relation: {
|
|
name: 'tabbar-item',
|
|
type: 'descendant',
|
|
linked(target: Weapp.Component) {
|
|
this.children = this.children || [];
|
|
this.children.push(target);
|
|
this.setActiveItem();
|
|
},
|
|
unlinked(target: Weapp.Component) {
|
|
this.children = this.children || [];
|
|
this.children = this.children.filter(item => item !== target);
|
|
this.setActiveItem();
|
|
}
|
|
},
|
|
|
|
props: {
|
|
active: Number,
|
|
activeColor: String,
|
|
fixed: {
|
|
type: Boolean,
|
|
value: true
|
|
},
|
|
zIndex: {
|
|
type: Number,
|
|
value: 1
|
|
}
|
|
},
|
|
|
|
watch: {
|
|
active(active: number) {
|
|
this.currentActive = active;
|
|
this.setActiveItem();
|
|
}
|
|
},
|
|
|
|
created() {
|
|
this.currentActive = this.data.active;
|
|
},
|
|
|
|
methods: {
|
|
setActiveItem(): Promise<any> {
|
|
if (!Array.isArray(this.children) || !this.children.length) {
|
|
return Promise.resolve();
|
|
}
|
|
return Promise.all(
|
|
this.children.map((item: Weapp.Component, index: number) =>
|
|
item.setActive({
|
|
active: index === this.currentActive,
|
|
color: this.data.activeColor
|
|
})
|
|
)
|
|
);
|
|
},
|
|
|
|
onChange(child: Weapp.Component) {
|
|
const active = (this.children || []).indexOf(child);
|
|
|
|
if (active !== this.currentActive && active !== -1) {
|
|
this.currentActive = active;
|
|
this.setActiveItem().then(() => {
|
|
this.$emit('change', active);
|
|
});
|
|
}
|
|
}
|
|
}
|
|
});
|