From b7180be51ef76c3633d2f158af6be6594423c528 Mon Sep 17 00:00:00 2001 From: fanluyan <754122931@qq.com> Date: Wed, 21 Feb 2024 09:56:20 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=84=E7=90=86=E6=97=A0=E6=95=88=E6=95=B0?= =?UTF-8?q?=E6=8D=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/icing/index.vue | 58 +++++++++++++++++++++++++++++---------- 1 file changed, 44 insertions(+), 14 deletions(-) diff --git a/src/views/icing/index.vue b/src/views/icing/index.vue index 6b36bc7..2bab9bd 100644 --- a/src/views/icing/index.vue +++ b/src/views/icing/index.vue @@ -92,10 +92,14 @@ - - + + + - + + + + > + + + > + +
@@ -455,24 +477,32 @@ export default { { name: "最大拉力", type: "line", - data: result[i].map((item) => item.maxPull), + data: result[i].map((item) => + item.maxPull == 65535 ? "" : item.maxPull + ), }, { name: "最小拉力", type: "line", - data: result[i].map((item) => item.minPull), + data: result[i].map((item) => + item.minPull == 65535 ? "" : item.minPull + ), }, { name: "最大风偏角时拉力", type: "line", - data: result[i].map((item) => item.maxWindPull), + data: result[i].map((item) => + item.maxWindPull == 65535 ? "" : item.maxWindPull + ), }, { name: "最小风偏角时拉力", type: "line", - data: result[i].map((item) => item.minWindPull), + data: result[i].map((item) => + item.minWindPull == 65535 ? "" : item.minWindPull + ), }, { name: "最大拉力时风偏角",