From dc3bfffe8ae1e1eea51aa55a73d2903112a839db Mon Sep 17 00:00:00 2001 From: lijianxiong <1518062161@qq.com> Date: Wed, 30 Oct 2024 16:39:22 +0800 Subject: [PATCH] =?UTF-8?q?feat=EF=BC=9A=E5=A4=9A=E6=95=B0=E6=8D=AE?= =?UTF-8?q?=E9=83=A8=E4=BB=B6=E6=8E=92=E5=BA=8F=E8=AE=BE=E7=BD=AE=E7=BB=84?= =?UTF-8?q?=E4=BB=B6=E5=A2=9E=E5=8A=A0=E5=BC=B9=E5=87=BA=E6=A1=86=E5=AE=9A?= =?UTF-8?q?=E4=BD=8D=E5=B1=82=E7=BA=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 1 + src/common/md-ctrl-setting/md-ctrl-setting.scss | 1 + src/common/md-ctrl-setting/md-ctrl-setting.tsx | 1 + 3 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64ae6163..ec6f2d33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ ### Change - 分页导航视图加载实体数据后计算工具栏权限状态逻辑迁移到runtime包 +- 多数据部件排序设置组件增加弹出框定位层级 ### Added diff --git a/src/common/md-ctrl-setting/md-ctrl-setting.scss b/src/common/md-ctrl-setting/md-ctrl-setting.scss index fe48210a..7774d374 100644 --- a/src/common/md-ctrl-setting/md-ctrl-setting.scss +++ b/src/common/md-ctrl-setting/md-ctrl-setting.scss @@ -15,6 +15,7 @@ $md-ctrl-setting: ( } @include e('popup') { + @include set-component-css-var('md-ctrl-setting', $md-ctrl-setting); height: getCssVar('md-ctrl-setting', 'popup-height'); } diff --git a/src/common/md-ctrl-setting/md-ctrl-setting.tsx b/src/common/md-ctrl-setting/md-ctrl-setting.tsx index ccfa1df2..e5939efa 100644 --- a/src/common/md-ctrl-setting/md-ctrl-setting.tsx +++ b/src/common/md-ctrl-setting/md-ctrl-setting.tsx @@ -189,6 +189,7 @@ export const IBizMdCtrlSetting = defineComponent({ v-model:show={visible.value} round class={ns.e('popup')} + teleport='body' position='bottom' > {{ default: () => renderContent() }} -- Gitee