减少嵌套

pull/3219/head
thomasyonug 2017-03-05 22:43:50 +08:00
parent cadcd91968
commit cbf3a9e1f6
1 changed files with 3 additions and 5 deletions

View File

@ -73,12 +73,10 @@
select(item, menuIndex) {
if (item.__IS__FLAT__OPTIONS) {
this.activeValue = item.value;
} else if (menuIndex) {
this.activeValue.splice(menuIndex, this.activeValue.length - 1, item.value);
} else {
if (menuIndex) {
this.activeValue.splice(menuIndex, this.activeValue.length - 1, item.value);
} else {
this.activeValue = [item.value];
}
this.activeValue = [item.value];
}
this.$emit('pick', this.activeValue);
},