From 05269e44c30bc66df398e53da9e8ad240398048e Mon Sep 17 00:00:00 2001 From: wuteng <419274783@qq.com> Date: Tue, 10 Mar 2026 14:14:09 +0800 Subject: [PATCH] =?UTF-8?q?=E9=94=80=E8=B4=A6=EF=BC=8C=E5=8F=91=E7=A5=A8?= =?UTF-8?q?=E8=BF=87=E9=95=BF=E6=98=BE=E7=A4=BA=E4=BC=98=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../CancelAccountApplicationListPanel.vue | 20 ++++++++++++++++++- .../panel/CancelAccountBillList.vue | 19 +++++++++++++++++- .../panel/CancelAccountCheckListPanel.vue | 16 +++++++++++++++ 3 files changed, 53 insertions(+), 2 deletions(-) diff --git a/src/views/emis/emisSettleBill/panel/CancelAccountApplicationListPanel.vue b/src/views/emis/emisSettleBill/panel/CancelAccountApplicationListPanel.vue index d331c27a..03676369 100644 --- a/src/views/emis/emisSettleBill/panel/CancelAccountApplicationListPanel.vue +++ b/src/views/emis/emisSettleBill/panel/CancelAccountApplicationListPanel.vue @@ -117,7 +117,19 @@ --> - + + + + {{ scope.row.invoiceNo }} + + + + @@ -361,4 +373,10 @@ export default { text-overflow: ellipsis; vertical-align: top; white-space: nowrap; } +.table-text-ellipsis { + white-space: nowrap; /* 强制不换行 */ + overflow: hidden; /* 超出隐藏 */ + text-overflow: ellipsis; /* 超出显示省略号 */ + width: 100%; /* 继承单元格宽度 */ +} diff --git a/src/views/emis/emisSettleBill/panel/CancelAccountBillList.vue b/src/views/emis/emisSettleBill/panel/CancelAccountBillList.vue index f108c1c4..70ed4f8b 100644 --- a/src/views/emis/emisSettleBill/panel/CancelAccountBillList.vue +++ b/src/views/emis/emisSettleBill/panel/CancelAccountBillList.vue @@ -40,7 +40,18 @@ - + + + + {{ scope.row.invoiceNo }} + + + @@ -206,4 +217,10 @@ export default { color: #0955ee; cursor: pointer; } + .table-text-ellipsis { + white-space: nowrap; /* 强制不换行 */ + overflow: hidden; /* 超出隐藏 */ + text-overflow: ellipsis; /* 超出显示省略号 */ + width: 100%; /* 继承单元格宽度 */ + } diff --git a/src/views/emis/emisSettleBill/panel/CancelAccountCheckListPanel.vue b/src/views/emis/emisSettleBill/panel/CancelAccountCheckListPanel.vue index 6d9029a1..1af4a079 100644 --- a/src/views/emis/emisSettleBill/panel/CancelAccountCheckListPanel.vue +++ b/src/views/emis/emisSettleBill/panel/CancelAccountCheckListPanel.vue @@ -112,6 +112,16 @@ + + + {{ scope.row.invoiceNo }} + + @@ -560,4 +570,10 @@ export default { vertical-align: top; white-space: nowrap; } +.table-text-ellipsis { + white-space: nowrap; /* 强制不换行 */ + overflow: hidden; /* 超出隐藏 */ + text-overflow: ellipsis; /* 超出显示省略号 */ + width: 100%; /* 继承单元格宽度 */ +}