From c188446e76fb48c8bb892dceaa5e90809b79fe67 Mon Sep 17 00:00:00 2001 From: stt Date: Mon, 8 Dec 2025 10:32:11 +0800 Subject: [PATCH] =?UTF-8?q?=E6=A0=B7=E5=BC=8F=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../transientDetails/components/transientList.vue | 2 +- .../components/transientStatisticsDetail.vue | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/components/cockpit/transientDetails/components/transientList.vue b/src/components/cockpit/transientDetails/components/transientList.vue index d6a67fe..ae93449 100644 --- a/src/components/cockpit/transientDetails/components/transientList.vue +++ b/src/components/cockpit/transientDetails/components/transientList.vue @@ -132,7 +132,7 @@ const tableStore: any = new TableStore({ }, { title: '波形', - width: '100', + minWidth: '100', render: 'buttons', buttons: [ { diff --git a/src/components/cockpit/transientStatistics/components/transientStatisticsDetail.vue b/src/components/cockpit/transientStatistics/components/transientStatisticsDetail.vue index a1758c9..7963efa 100644 --- a/src/components/cockpit/transientStatistics/components/transientStatisticsDetail.vue +++ b/src/components/cockpit/transientStatistics/components/transientStatisticsDetail.vue @@ -86,27 +86,27 @@ const tableStore: any = new TableStore({ { title: '暂态时间', field: 'startTime', - width: '180' + minWidth: '180' }, { title: '测点名称', field: 'lineName', - width: '150' + minWidth: '150' }, { title: '暂态类型', field: 'tag', - width: '100' + minWidth: '100' }, { title: '特征幅值(%)', field: 'amplitude', - width: '100' + minWidth: '100' }, { title: '暂降深度(%)', field: 'depth', - width: '100', + minWidth: '100', formatter: (row: any) => { // 当暂态类型不是电压暂升时,计算暂降深度 = 100 - 特征幅值 if (row.row.tag !== '电压暂升') { @@ -124,12 +124,12 @@ const tableStore: any = new TableStore({ { title: '持续时间(S)', field: 'persistTime', - width: '100' + minWidth: '100' }, { title: '严重度', field: 'severity', - width: '80' + minWidth: '80' }, { title: '波形',