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%; /* 继承单元格宽度 */ +}