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 @@
-
-
+
+
+
+ {{ scope.row.maxPull }}
+ -
+
+
-
+
+
+
+ {{ scope.row.minPull }}
+ -
+
+
+ >
+
+
+ {{ scope.row.maxWindPull }}
+ -
+
+
+ >
+
+
+ {{ scope.row.minWindPull }}
+ -
+
+
@@ -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: "最大拉力时风偏角",