fix: 修复对话窗口,全局变量下拉框选项显示不全

This commit is contained in:
shaohuzhang1 2024-10-30 11:53:20 +08:00 committed by shaohuzhang1
parent c500920963
commit 31a6a528d6

View File

@ -1,5 +1,12 @@
<template>
<el-select filterable :teleported="false" clearable v-bind="$attrs" v-model="_modelValue">
<el-select
filterable
:teleported="true"
popper-class="dynamics-single-select"
clearable
v-bind="$attrs"
v-model="_modelValue"
>
<el-option
v-for="(item, index) in option_list"
:key="index"
@ -61,8 +68,10 @@ const label = (option: any) => {
return option[textField.value]
}
</script>
<style lang="scss" scoped>
:deep(.el-select-dropdown) {
max-width: 400px;
<style lang="scss">
.dynamics-single-select {
.el-select-dropdown {
max-width: 1px;
}
}
</style>