From 5c5828ff17837ac7bcea07130f37760d31a19187 Mon Sep 17 00:00:00 2001 From: "yuan.ji" <961999367@qq.com> Date: Wed, 17 Dec 2025 17:05:31 +0800 Subject: [PATCH 1/5] =?UTF-8?q?fix(ZIndex):=20=E5=BC=B9=E7=AA=97=E5=86=85v?= =?UTF-8?q?xe-table=E5=86=85=E7=BB=84=E4=BB=B6=E7=9A=84=E5=B1=82=E7=BA=A7?= =?UTF-8?q?=E9=97=AE=E9=A2=98=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/styles/package.json | 3 +++ packages/styles/src/vxe/index.css | 9 +++++++++ 2 files changed, 12 insertions(+) create mode 100644 packages/styles/src/vxe/index.css diff --git a/packages/styles/package.json b/packages/styles/package.json index 0716a5e5e17..b2528562b70 100644 --- a/packages/styles/package.json +++ b/packages/styles/package.json @@ -26,6 +26,9 @@ }, "./global": { "default": "./src/global/index.scss" + }, + "./vxe": { + "default": "./src/vxe/index.css" } }, "dependencies": { diff --git a/packages/styles/src/vxe/index.css b/packages/styles/src/vxe/index.css new file mode 100644 index 00000000000..231e50cad64 --- /dev/null +++ b/packages/styles/src/vxe/index.css @@ -0,0 +1,9 @@ + +/** 弹窗内表格tooltip层级问题修复 */ +.vxe-tooltip--wrapper { + z-index: 2001 !important; +} +/** 弹窗内表格组件层级问题修复 */ +.vxe-select--panel { + z-index: 2001 !important; +} From c19a726677fa8ebede2936b977669ebb938ccbe8 Mon Sep 17 00:00:00 2001 From: "yuan.ji" <961999367@qq.com> Date: Wed, 17 Dec 2025 17:10:54 +0800 Subject: [PATCH 2/5] =?UTF-8?q?fix(ZIndex):=20=E5=BC=B9=E7=AA=97=E5=86=85v?= =?UTF-8?q?xe-table=E5=86=85=E7=BB=84=E4=BB=B6=E7=9A=84=E5=B1=82=E7=BA=A7?= =?UTF-8?q?=E9=97=AE=E9=A2=98=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- playground/src/bootstrap.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/playground/src/bootstrap.ts b/playground/src/bootstrap.ts index fed07340086..6f53f0fa034 100644 --- a/playground/src/bootstrap.ts +++ b/playground/src/bootstrap.ts @@ -6,6 +6,7 @@ import { preferences } from '@vben/preferences'; import { initStores } from '@vben/stores'; import '@vben/styles'; import '@vben/styles/antd'; +import '@vben/styles/vxe'; import { useTitle } from '@vueuse/core'; From 581b488eed534333a0632a4e5660af1ad5badd57 Mon Sep 17 00:00:00 2001 From: "yuan.ji" <961999367@qq.com> Date: Wed, 17 Dec 2025 17:11:44 +0800 Subject: [PATCH 3/5] =?UTF-8?q?fix(ZIndex):=20=E5=BC=B9=E7=AA=97=E5=86=85v?= =?UTF-8?q?xe-table=E5=86=85=E7=BB=84=E4=BB=B6=E7=9A=84=E5=B1=82=E7=BA=A7?= =?UTF-8?q?=E9=97=AE=E9=A2=98=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web-antd/src/bootstrap.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/web-antd/src/bootstrap.ts b/apps/web-antd/src/bootstrap.ts index ec721125434..1a57e5ed7f3 100644 --- a/apps/web-antd/src/bootstrap.ts +++ b/apps/web-antd/src/bootstrap.ts @@ -6,6 +6,7 @@ import { preferences } from '@vben/preferences'; import { initStores } from '@vben/stores'; import '@vben/styles'; import '@vben/styles/antd'; +import '@vben/styles/vxe'; import { useTitle } from '@vueuse/core'; From 1345fd763f52ac1449e4c249c202480dae160861 Mon Sep 17 00:00:00 2001 From: "yuan.ji" <961999367@qq.com> Date: Wed, 17 Dec 2025 17:51:08 +0800 Subject: [PATCH 4/5] =?UTF-8?q?fix(ZIndex):=20=E5=BC=B9=E7=AA=97=E5=86=85v?= =?UTF-8?q?xe-table=E5=86=85=E7=BB=84=E4=BB=B6=E7=9A=84=E5=B1=82=E7=BA=A7?= =?UTF-8?q?=E9=97=AE=E9=A2=98=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/styles/src/vxe/index.css | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/styles/src/vxe/index.css b/packages/styles/src/vxe/index.css index 231e50cad64..2e14ff4b756 100644 --- a/packages/styles/src/vxe/index.css +++ b/packages/styles/src/vxe/index.css @@ -1,3 +1,4 @@ +/* vxe-table 组件库的一些样式重置 */ /** 弹窗内表格tooltip层级问题修复 */ .vxe-tooltip--wrapper { From 6d746ba84b7d40cf891d432f5abf408b5985183b Mon Sep 17 00:00:00 2001 From: "yuan.ji" <961999367@qq.com> Date: Wed, 17 Dec 2025 18:02:10 +0800 Subject: [PATCH 5/5] =?UTF-8?q?fix(ZIndex):=20=E5=BC=B9=E7=AA=97=E5=86=85v?= =?UTF-8?q?xe-table=E5=86=85=E7=BB=84=E4=BB=B6=E7=9A=84=E5=B1=82=E7=BA=A7?= =?UTF-8?q?=E9=97=AE=E9=A2=98=E4=BF=AE=E5=A4=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/styles/src/vxe/index.css | 1 + 1 file changed, 1 insertion(+) diff --git a/packages/styles/src/vxe/index.css b/packages/styles/src/vxe/index.css index 2e14ff4b756..e1b5ecfc3b8 100644 --- a/packages/styles/src/vxe/index.css +++ b/packages/styles/src/vxe/index.css @@ -4,6 +4,7 @@ .vxe-tooltip--wrapper { z-index: 2001 !important; } + /** 弹窗内表格组件层级问题修复 */ .vxe-select--panel { z-index: 2001 !important;