From 8ce2968bee5654673aa6483e337e5f8f33443e47 Mon Sep 17 00:00:00 2001 From: stt Date: Thu, 27 Nov 2025 16:21:52 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=A0=B7=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/cockpit/F47Curve/index.vue | 3 +- .../components/transientStatisticsDetail.vue | 30 ++----------------- 2 files changed, 5 insertions(+), 28 deletions(-) diff --git a/src/components/cockpit/F47Curve/index.vue b/src/components/cockpit/F47Curve/index.vue index b362872..e2e2818 100644 --- a/src/components/cockpit/F47Curve/index.vue +++ b/src/components/cockpit/F47Curve/index.vue @@ -429,7 +429,8 @@ const handleTolerableEventClick = async (row: any) => { isWaveCharts.value = true nextTick(() => { if (waveFormAnalysisRef.value) { - waveFormAnalysisRef.value.setHeight(false, 360) + //waveFormAnalysisRef.value.setHeight(false, 360) + waveFormAnalysisRef.value.setHeight(999, 130, 1.6666666) } }) await analyseWave(row.value[3]) diff --git a/src/components/cockpit/transientStatistics/components/transientStatisticsDetail.vue b/src/components/cockpit/transientStatistics/components/transientStatisticsDetail.vue index dc3d46e..7c0360e 100644 --- a/src/components/cockpit/transientStatistics/components/transientStatisticsDetail.vue +++ b/src/components/cockpit/transientStatistics/components/transientStatisticsDetail.vue @@ -16,7 +16,7 @@ -
+
{ waveFormAnalysisRef.value && waveFormAnalysisRef.value.getWpData(wp.value, boxoList.value, true) - // waveFormAnalysisRef.value && waveFormAnalysisRef.value.setHeight(false, 360) }) } }, @@ -196,23 +196,6 @@ const tableStore: any = new TableStore({ ], beforeSearchFun: () => {}, loadCallback: () => { - // tableStore.table.data = [ - // { - // time: '2024-01-01 00:00:00', - // name: '35kV进线', - // flicker: '0' - // }, - // { - // time: '2024-01-01 00:00:00', - // name: '35kV进线', - // flicker: '0' - // }, - // { - // time: '2024-01-01 00:00:00', - // name: '35kV进线', - // flicker: '0' - // } - // ] } }) @@ -233,13 +216,6 @@ const handleHideCharts = () => { dialogVisible.value = true } -// 点击行 -const cellClickEvent = ({ row, column }: any) => { - if (column.field != 'name') { - isWaveCharts.value = true - } -} - defineExpose({ open })