fix: 修复对话窗口,全局变量下拉框选项显示不全
This commit is contained in:
parent
c500920963
commit
31a6a528d6
@ -1,5 +1,12 @@
|
|||||||
<template>
|
<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
|
<el-option
|
||||||
v-for="(item, index) in option_list"
|
v-for="(item, index) in option_list"
|
||||||
:key="index"
|
:key="index"
|
||||||
@ -61,8 +68,10 @@ const label = (option: any) => {
|
|||||||
return option[textField.value]
|
return option[textField.value]
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss">
|
||||||
:deep(.el-select-dropdown) {
|
.dynamics-single-select {
|
||||||
max-width: 400px;
|
.el-select-dropdown {
|
||||||
|
max-width: 1px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user