This commit is contained in:
mo.duan 2019-11-12 18:41:28 +08:00
parent 78e96edfdf
commit 5f04795b70
2 changed files with 55 additions and 21 deletions

View file

@ -27,9 +27,20 @@
<Button @click="handleReset('formValidate')" style="margin-left: 8px">Reset</Button> <Button @click="handleReset('formValidate')" style="margin-left: 8px">Reset</Button>
</FormItem> </FormItem>
</Form> </Form>
<!-- fix #6349 -->
<Select v-model='test' filterable clearable> <Select v-model='test' filterable clearable>
<Option v-for='item in list' :value='item.value' :label="item.name"></Option> <Option v-for='item in list' :value='item.value' :label="item.name" :key="item.value"></Option>
</Select>
<h2 style="margin-top:20px">#5216</h2>
<Select v-model="model11" filterable clearable>
<OptionGroup label="分组">
<Option v-for="item in cityList" :value="item.value" :key="item.value">{{ item.label }}</Option>
</OptionGroup>
</Select>
<h2 style="margin-top:20px">Demo</h2>
<Select v-model="model12">
<OptionGroup label="分组">
<Option v-for="item in cityList" :value="item.value" :key="item.value">{{ item.label }}</Option>
</OptionGroup>
</Select> </Select>
</div> </div>
</template> </template>
@ -51,19 +62,47 @@
}, },
test:'', test:'',
list:[{ list:[{
name:"测试测试2", name: '测试测试2',
value:1 value:1
},{ },{
name:"dddddd", name: 'dddddd',
value:2 value:2
},{ },{
name:"测试测试", name:'测试测试',
value:8 value:8
},{ },{
name:"\"年龄\"123", name: '\"年龄\"123',
value:9 value:9
}] }],
} cityList: [
{
value: 'New York',
label: 'New York'
},
{
value: 'London',
label: 'London'
},
{
value: 'Sydney',
label: 'Sydney'
},
{
value: 'Ottawa',
label: 'Ottawa'
},
{
value: 'Paris',
label: 'Paris'
},
{
value: 'Canberra',
label: 'Canberra'
}
],
model11: '',
model12: ''
};
}, },
methods: { methods: {
handleSubmit (name) { handleSubmit (name) {
@ -73,11 +112,11 @@
} else { } else {
this.$Message.error('Fail!'); this.$Message.error('Fail!');
} }
}) });
}, },
handleReset (name) { handleReset (name) {
this.$refs[name].resetFields(); this.$refs[name].resetFields();
} }
} }
} };
</script> </script>

View file

@ -413,7 +413,7 @@
if (!optionPassesFilter) continue; if (!optionPassesFilter) continue;
} }
optionCounter = optionCounter + 1; optionCounter = optionCounter + 1;
selectOptions.push(this.processOption(option, selectedValues, this.focusIndex === optionCounter)); selectOptions.push(this.processOption(option, selectedValues, currentIndex === optionCounter));
} }
} }
@ -526,12 +526,10 @@
setTimeout(() =>{ setTimeout(() =>{
this.unchangedQuery = true; this.unchangedQuery = true;
// resolve if we use filterable, dropItem not selected #6349 // resolve if we use filterable, dropItem not selected #6349
if(this.filterable){ this.hideMenuTimer = setTimeout(()=>{
this.hideMenuTimer = setTimeout(()=>{ this.updateFocusIndex();
this.updateFocusIndex(); this.hideMenuTimer = null;
this.hideMenuTimer = null; });
});
}
}, ANIMATION_TIMEOUT); }, ANIMATION_TIMEOUT);
}, },
onClickOutside(event){ onClickOutside(event){
@ -665,12 +663,9 @@
this.query = String(option.label).trim(); this.query = String(option.label).trim();
this.values = [option]; this.values = [option];
this.lastRemoteQuery = ''; this.lastRemoteQuery = '';
this.query = '';
this.hideMenu(); this.hideMenu();
} }
this.focusIndex = this.flatOptions.findIndex((opt) => {
if (!opt || !opt.componentOptions) return false;
return opt.componentOptions.propsData.value === option.value;
});
if (this.filterable){ if (this.filterable){
const inputField = this.$el.querySelector('input[type="text"]'); const inputField = this.$el.querySelector('input[type="text"]');
if (!this.autoComplete) this.$nextTick(() => inputField.focus()); if (!this.autoComplete) this.$nextTick(() => inputField.focus());