vue2x版本下,a-select的支持搜索模式:
!!!第一种:
<a-select
show-search
:style="showable?'':{width: '92%',marginRight: '5px'}"
:disabled="showable"
:options="unitList"
option-filter-prop="children"
:filter-option="filterOption"
v-model="formData.unit" />
filterOption(input, option) {
return (
option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
)
},
!!!第二种:
<a-select
show-search
:style="showable?'':{width: '92%',marginRight: '5px'}"
:disabled='showable'
:options='unitList'
@change="unitChange"
:filter-option="filterOption"
v-decorator="['unit', {rules: [{required: false, message: '请选择单位'}]}]" />
filterOption(input, option) {
return (
option.componentOptions.children[0].text.toLowerCase().indexOf(input.toLowerCase()) >= 0
)
},