diff --git a/04.系统编码/Frontend/src/components/RamanLidar.vue b/04.系统编码/Frontend/src/components/RamanLidar.vue index a4d3cab..7b23523 100644 --- a/04.系统编码/Frontend/src/components/RamanLidar.vue +++ b/04.系统编码/Frontend/src/components/RamanLidar.vue @@ -71,13 +71,12 @@

激光雷达比

- - - - -
- - +
+

光学厚度

@@ -96,12 +95,7 @@

边界层高度

- - - - -
- +

气溶胶PM

@@ -134,19 +128,12 @@

云层高度

- - - -
- +
+

云顶高度

- - - -
- +
@@ -260,7 +247,7 @@ export default { loadingExtinctionStatus: false, loadingWaterVaporStatus: false, loadingBackscatterStatus: false, - loadingLidarRatioStatus: true, + loadingLidarRatioStatus: false, loadingBoundaryLayerHeightStatus: false, loadingCloudsHeightStatus: false, loadingCloudTopHeightStatus: false @@ -281,7 +268,7 @@ export default { creates.boundaryLayerHeight.setSpecialXAxis('时间(小时)', 24,0,2); creates.boundaryLayerHeight.setYAxis('边界层高度(米)', 3000, 0, 500, 7); creates.boundaryLayerHeight.setLegend(); - creates.boundaryLayerHeight.setTooltip('{point.category}: {point.y}(m)'); + creates.boundaryLayerHeight.setTooltip(''); creates.boundaryLayerHeight.setSeries('边界层高度') creates.boundaryLayerHeight.init(); } @@ -293,7 +280,7 @@ export default { creates.cloudsHeight.setSpecialXAxis('时间(小时)', 24,0,2); creates.cloudsHeight.setYAxis('高度(米)', 14000, 0, 2000, 8); creates.cloudsHeight.setLegend(); - creates.cloudsHeight.setTooltip('{point.category}: {point.y}(m)'); + creates.cloudsHeight.setTooltip(''); creates.cloudsHeight.setSeries('云层高度') creates.cloudsHeight.init(); } @@ -304,7 +291,7 @@ export default { creates.cloudTopHeight.setSpecialXAxis('时间(小时)', 24,0,2); creates.cloudTopHeight.setYAxis('高度(米)', 14000, 0, 2000, 8); creates.cloudTopHeight.setLegend(); - creates.cloudTopHeight.setTooltip('{point.category}: {point.y}(m)'); + creates.cloudTopHeight.setTooltip(''); creates.cloudTopHeight.setSeries('云顶高度') creates.cloudTopHeight.init(); } @@ -316,7 +303,7 @@ export default { creates.LidarRatio.setSpecialXAxis('时间(小时)', 24,0,2); creates.LidarRatio.setYAxis('高度(米)', 500, 0, 50, 7); creates.LidarRatio.setLegend(); - creates.LidarRatio.setTooltip('{point.category}: {point.y}(m)'); + creates.LidarRatio.setTooltip(''); creates.LidarRatio.setSeries('激光雷达比') creates.LidarRatio.init(); }