diff --git a/src/components/Dialog/src/Dialog.vue b/src/components/Dialog/src/Dialog.vue index b0d81dd..2c17995 100644 --- a/src/components/Dialog/src/Dialog.vue +++ b/src/components/Dialog/src/Dialog.vue @@ -12,7 +12,7 @@ const props = defineProps({ width: propTypes.oneOfType([String, Number]).def('40%'), scroll: propTypes.bool.def(false), // 是否开启滚动条。如果是的话,按照 maxHeight 设置最大高度 maxHeight: propTypes.oneOfType([String, Number]).def('400px'), - + top: propTypes.string.def('15vh') }) const getBindValue = computed(() => { @@ -29,9 +29,7 @@ const getBindValue = computed(() => { const isFullscreen = ref(false) -const toggleFull = () => { - isFullscreen.value = !unref(isFullscreen) -} + const dialogHeight = ref(isNumber(props.maxHeight) ? `${props.maxHeight}px` : props.maxHeight) @@ -67,6 +65,7 @@ const dialogStyle = computed(() => { lock-scroll class="com-dialog" :show-close="false" + :top="top" >