mirror of
https://github.com/dataease/dataease.git
synced 2026-06-14 17:51:43 +08:00
fix:仪表板全屏预览过滤组件下拉框不显示问题
This commit is contained in:
@@ -9,6 +9,7 @@
|
||||
:multiple="options.attrs.multiple"
|
||||
:placeholder="options.attrs.placeholder"
|
||||
@change="changeValue"
|
||||
:popper-append-to-body="false"
|
||||
>
|
||||
<el-option
|
||||
v-for="item in options.attrs.datas"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<template>
|
||||
|
||||
<el-select v-if="options!== null && options.attrs!==null" v-model="values" :multiple="options.attrs.multiple" :placeholder="options.attrs.placeholder" @change="changeValue">
|
||||
<el-select v-if="options!== null && options.attrs!==null" v-model="values" :multiple="options.attrs.multiple" :placeholder="options.attrs.placeholder" :popper-append-to-body="false" @change="changeValue">
|
||||
<el-option
|
||||
v-for="item in options.attrs.datas"
|
||||
:key="item[options.attrs.key]"
|
||||
|
||||
Reference in New Issue
Block a user