From 15d094d934224085248c2d5e5db6bc361fa02771 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=88=B1=7E=E6=B5=B7=7E=E7=88=B1=E6=B5=B7=E7=88=B1?= =?UTF-8?q?=E6=B5=B7=7E=E5=8F=B3?= <1828712314@qq.com> Date: Thu, 20 Mar 2025 16:04:09 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=AF=B9=E8=AF=9D=E6=A1=86?= =?UTF-8?q?=E5=92=8C=E7=BC=96=E8=BE=91=E5=99=A8=E7=BB=84=E4=BB=B6=E6=A0=B7?= =?UTF-8?q?=E5=BC=8F=EF=BC=8C=E8=B0=83=E6=95=B4=E8=A1=A8=E5=8D=95=E5=B8=83?= =?UTF-8?q?=E5=B1=80=E5=92=8C=E9=80=BB=E8=BE=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Dialog/src/Dialog.vue | 8 +- src/components/Editor/src/Editor.vue | 22 +++- src/styles/variables.scss | 6 + src/utils/formatTime.ts | 10 +- src/views/system/policy/PolicyForm.vue | 64 ++++++--- src/views/system/policy/index.vue | 174 +++++++++++-------------- src/views/system/taglibrary/index.vue | 26 +++- 7 files changed, 171 insertions(+), 139 deletions(-) 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" >