fix Select bug that multiple options disalbed

This commit is contained in:
梁灏 2020-07-03 12:02:27 +08:00
parent df671ae8c3
commit b15d9455cc
3 changed files with 17 additions and 2 deletions

View file

@ -9,8 +9,8 @@
class="ivu-tag ivu-tag-checked"
v-for="(item, index) in selectedMultiple"
v-if="maxTagCount === undefined || index < maxTagCount">
<span class="ivu-tag-text">{{ item.tag !== undefined ? item.tag : item.label }}</span>
<Icon type="ios-close" @click.native.stop="removeTag(item)"></Icon>
<span class="ivu-tag-text" :class="{ 'ivu-select-multiple-tag-hidden': item.disabled }">{{ item.tag !== undefined ? item.tag : item.label }}</span>
<Icon type="ios-close" v-if="!item.disabled" @click.native.stop="removeTag(item)"></Icon>
</div><div class="ivu-tag ivu-tag-checked" v-if="maxTagCount !== undefined && selectedMultiple.length > maxTagCount">
<span class="ivu-tag-text ivu-select-max-tag">
<template v-if="maxTagPlaceholder">{{ maxTagPlaceholder(selectedMultiple.length - maxTagCount) }}</template>

View file

@ -490,9 +490,12 @@
const option = this.flatOptions.find(({componentOptions}) => componentOptions.propsData.value === value);
if (!option) return null;
const label = getOptionLabel(option);
// disabled bug
const disabled = option.componentOptions.propsData.disabled;
return {
value: value,
label: label,
disabled: disabled
};
},
getInitialValue(){

View file

@ -229,6 +229,9 @@
top: 4px;
}
}
&-multiple-tag-hidden{
margin-right: 0 !important;
}
&-large&-multiple .@{css-prefix}tag{
height: 32px;
@ -319,6 +322,15 @@
top: 2px;
right: 8px;
}
&-selected.ivu-select-item-disabled{
color: @btn-disable-color;
&:after{
color: @btn-disable-color;
}
&:hover{
background-color: #fff;
}
}
}
.@{select-group-prefix-cls} {