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; +}