Merge pull request #333 from dataease/pr@v1.1@fix_panel_filter-date1.1

fix:全屏预览模式下日期控件下拉不显示问题
This commit is contained in:
王嘉豪 2021-07-26 14:50:56 +08:00 committed by GitHub
commit c431ccec7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,6 +8,7 @@
:start-placeholder="options.attrs.startPlaceholder"
:end-placeholder="options.attrs.endPlaceholder"
:placeholder="options.attrs.placeholder"
:append-to-body="inScreen"
style="min-height: 36px;"
@change="dateChange"
/>
@ -25,6 +26,11 @@ export default {
inDraw: {
type: Boolean,
default: true
},
inScreen: {
type: Boolean,
required: false,
default: true
}
},
data() {