From a37dccdec047a8dfba7ec17dbc302a18ff7aae06 Mon Sep 17 00:00:00 2001 From: dap <15891557205@163.com> Date: Wed, 5 Feb 2025 15:03:28 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20modal/drawer=E5=8D=87=E7=BA=A7=E5=90=8Ez?= =?UTF-8?q?Index(2000)=E4=BC=9A=E9=81=AE=E6=8C=A1Tinymce=E7=9A=84=E4=B8=8B?= =?UTF-8?q?=E6=8B=89=E6=A1=86zIndex(1300)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 1 + apps/web-antd/src/components/tinymce/src/editor.vue | 13 ++++++++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 95864559..bc16b411 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ # BUG FIXES - 客户端管理 错误的status disabled +- modal/drawer升级后zIndex(2000)会遮挡Tinymce的下拉框zIndex(1300) # 1.2.0 diff --git a/apps/web-antd/src/components/tinymce/src/editor.vue b/apps/web-antd/src/components/tinymce/src/editor.vue index d3511d10..3441e84b 100644 --- a/apps/web-antd/src/components/tinymce/src/editor.vue +++ b/apps/web-antd/src/components/tinymce/src/editor.vue @@ -345,7 +345,7 @@ function handleDone(name: string, url: string) { v-if="!initOptions.inline && init" v-model="modelValue" :init="initOptions" - :style="{ visibility: 'hidden' }" + :style="{ visibility: 'hidden', zIndex: 3000 }" :tinymce-script-src="tinymceScriptSrc" license-key="gpl" /> @@ -353,6 +353,17 @@ function handleDone(name: string, url: string) { + +