From 1980a2482dbf9f1746bdfd10409f295ef5c54b83 Mon Sep 17 00:00:00 2001 From: dap <15891557205@163.com> Date: Mon, 27 Oct 2025 19:19:52 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20modal/drawer=E9=87=8C=E4=BD=BF=E7=94=A8?= =?UTF-8?q?=E5=88=97=E9=85=8D=E7=BD=AE=20=E9=87=8D=E7=BD=AE=E5=88=97?= =?UTF-8?q?=E5=BC=B9=E7=AA=97=E8=A2=AB=E9=81=AE=E6=8C=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 1 + packages/effects/plugins/src/vxe-table/style.css | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 300709c5..5993c52e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ - 菜单管理 新增没有加载下拉选择api - v-access:role指令错误判断code而非role +- modal/drawer里使用列配置 重置列弹窗被遮挡 # 1.5.1 diff --git a/packages/effects/plugins/src/vxe-table/style.css b/packages/effects/plugins/src/vxe-table/style.css index 6b6f55aa..55955c5a 100644 --- a/packages/effects/plugins/src/vxe-table/style.css +++ b/packages/effects/plugins/src/vxe-table/style.css @@ -141,3 +141,8 @@ TODO: 最后一条数据hover/check仍会显示边框 border-radius: var(--vxe-ui-table-border-radius) var(--vxe-ui-table-border-radius) 0 0; } + +/* modal/drawer里使用列配置 重置列弹窗被遮挡 */ +.vxe-dynamics--modal > .vxe-modal--wrapper { + z-index: calc(var(--popup-z-index) + 1) !important; +}