From 01ce9c143299234d29706bef8b8ea017c0453557 Mon Sep 17 00:00:00 2001 From: DXC Date: Tue, 21 Apr 2026 13:25:15 +0800 Subject: [PATCH] =?UTF-8?q?fix(outbound):=20=E4=BF=AE=E5=A4=8D=E9=A2=84?= =?UTF-8?q?=E8=A7=88=E5=BC=B9=E7=AA=97el-table=E6=89=93=E5=8D=B0=E5=88=86?= =?UTF-8?q?=E9=A1=B5=E6=88=AA=E6=96=AD=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/views/outbound/Selection.vue | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/inventory-web/src/views/outbound/Selection.vue b/inventory-web/src/views/outbound/Selection.vue index 80ebdef..a621bb3 100644 --- a/inventory-web/src/views/outbound/Selection.vue +++ b/inventory-web/src/views/outbound/Selection.vue @@ -871,6 +871,31 @@ const confirmExport = () => { .signature-item { display: flex; flex-direction: column; align-items: center; width: 30%; } .sig-label { font-size: 14px; margin-bottom: 40px; text-align: left; width: 100%; } .sig-line { border-bottom: 1px solid #000; width: 100%; height: 1px; display: block; } + + /* ★★★ 修复预览弹窗中 el-table 打印分页截断问题 ★★★ */ + .print-preview-content { + height: auto !important; + max-height: none !important; + overflow: visible !important; + } + .print-preview-content .el-table, + .print-preview-content .el-table__inner-wrapper, + .print-preview-content .el-table__body-wrapper, + .print-preview-content .el-table__body { + height: auto !important; + max-height: none !important; + overflow: visible !important; + } + .print-preview-content .el-scrollbar__wrap { + overflow: visible !important; + } + .print-preview-content .el-table tr { + page-break-inside: avoid !important; + break-inside: avoid !important; + } + .print-preview-content .el-table__body-wrapper is-scrollable-none { + overflow: visible !important; + } } :deep(.bulk-clickable-row) {