[update 88186] 下拉显示不完整

This commit is contained in:
danshihao
2024-08-07 13:47:16 +08:00
parent fcdc5d712c
commit ae31dcc8e3
2 changed files with 4 additions and 1 deletions
@@ -792,4 +792,7 @@ export default {
.disabledSelect {
user-select: none;
}
.table-page-search-wrapper .ant-form-inline /deep/ .ant-form-item > .ant-form-item-label {
min-width: auto;
}
</style>
+1 -1
View File
@@ -25,7 +25,7 @@
>
<a-select-option :value="undefined">{{ $t('pleaseSelect') }}</a-select-option>
<a-select-option v-for="(item, key) in dictOptions" :key="key" :value="item.value" :disabled="item.disabled || false">
<span style="display: inline-block;width: 100%" :title=" $i18n.locale === EN ? item.enText : (item.text || item.label) ">
<span :title=" $i18n.locale === EN ? item.enText : (item.text || item.label) ">
{{ $i18n.locale === EN ? item.enText : (item.text || item.label) }}
</span>
</a-select-option>