diff --git a/04.系统编码/Frontend/src/components/MicrowaveRadiation.vue b/04.系统编码/Frontend/src/components/MicrowaveRadiation.vue
index 395d5d8..078579f 100644
--- a/04.系统编码/Frontend/src/components/MicrowaveRadiation.vue
+++ b/04.系统编码/Frontend/src/components/MicrowaveRadiation.vue
@@ -342,7 +342,8 @@ export default {
       creates.verticalProfileTemp = new HighChartCreate('verticalProfileTemp');
       creates.verticalProfileTemp.setChart(true, 'line', 500, 500);
       creates.verticalProfileTemp.setXAxis('高度(km)', false);
-      creates.verticalProfileTemp.setYAxis('温度T(℃)', 10, -40, 10, 6);
+      // creates.verticalProfileTemp.setYAxis('温度T(℃)', 10, -40, 10, 6);
+      creates.verticalProfileTemp.setYAxis('温度T(℃)');
       creates.verticalProfileTemp.setLegend();
       creates.verticalProfileTemp.setTooltip('{point.category} KM, {point.y}');
       creates.verticalProfileTemp.setSeries('温度', 0, '℃', '#F49927');
@@ -354,7 +355,8 @@ export default {
       creates.verticalProfileVaporDensity = new HighChartCreate('verticalProfileVaporDensity');
       creates.verticalProfileVaporDensity.setChart(true, 'line', 500, 500);
       creates.verticalProfileVaporDensity.setXAxis('高度(km)', false);
-      creates.verticalProfileVaporDensity.setYAxis('水汽密度q(g/kg)', 10, 0, 1, 11);
+      // creates.verticalProfileVaporDensity.setYAxis('水汽密度q(g/kg)', 10, 0, 1, 11);
+      creates.verticalProfileVaporDensity.setYAxis('水汽密度q(g/kg)');
       creates.verticalProfileVaporDensity.setLegend();
       creates.verticalProfileVaporDensity.setTooltip('{point.category} KM, {point.y}');
       creates.verticalProfileVaporDensity.setSeries('水汽密度', 0, 'g/Kg', '#6AB312');