fix: 高级筛选-修复部分下拉搜索异常的缺陷

This commit is contained in:
teukkk 2024-10-24 15:35:53 +08:00 committed by 刘瑞斌
parent f3646a4e67
commit 9fad95a6f3
1 changed files with 2 additions and 1 deletions

View File

@ -119,7 +119,7 @@
v-model:model-value="item.value"
allow-clear
allow-search
:search-keys="['label', 'text']"
:search-keys="item.selectProps?.labelKey?.length ? [item.selectProps?.labelKey] : ['label']"
:placeholder="t('common.pleaseSelect')"
:disabled="isValueDisabled(item)"
:options="item.selectProps?.options || []"
@ -591,6 +591,7 @@
}
.arco-form-item-message {
margin-bottom: 0;
text-align: left;
}
}
</style>