mirror of https://github.com/ElemeFE/element
减少嵌套
parent
cadcd91968
commit
cbf3a9e1f6
|
@ -73,13 +73,11 @@
|
||||||
select(item, menuIndex) {
|
select(item, menuIndex) {
|
||||||
if (item.__IS__FLAT__OPTIONS) {
|
if (item.__IS__FLAT__OPTIONS) {
|
||||||
this.activeValue = item.value;
|
this.activeValue = item.value;
|
||||||
} else {
|
} else if (menuIndex) {
|
||||||
if (menuIndex) {
|
|
||||||
this.activeValue.splice(menuIndex, this.activeValue.length - 1, item.value);
|
this.activeValue.splice(menuIndex, this.activeValue.length - 1, item.value);
|
||||||
} else {
|
} else {
|
||||||
this.activeValue = [item.value];
|
this.activeValue = [item.value];
|
||||||
}
|
}
|
||||||
}
|
|
||||||
this.$emit('pick', this.activeValue);
|
this.$emit('pick', this.activeValue);
|
||||||
},
|
},
|
||||||
handleMenuLeave() {
|
handleMenuLeave() {
|
||||||
|
|
Loading…
Reference in New Issue