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) {
+
+