[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 { .disabledSelect {
user-select: none; user-select: none;
} }
.table-page-search-wrapper .ant-form-inline /deep/ .ant-form-item > .ant-form-item-label {
min-width: auto;
}
</style> </style>
+1 -1
View File
@@ -25,7 +25,7 @@
> >
<a-select-option :value="undefined">{{ $t('pleaseSelect') }}</a-select-option> <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"> <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) }} {{ $i18n.locale === EN ? item.enText : (item.text || item.label) }}
</span> </span>
</a-select-option> </a-select-option>