lxh пре 4 месеци
родитељ
комит
f62843cb0e

+ 363 - 365
src/views/vent/home/clique/components/wind-road.vue

@@ -21,427 +21,425 @@
   </div>
 </template>
 <script lang="ts" setup>
-  import { ref, reactive, nextTick, defineProps, watch } from 'vue';
-  import { SvgIcon } from '/@/components/Icon';
-  import * as echarts from 'echarts';
+import { ref, reactive, nextTick, defineProps, watch } from 'vue';
+import { SvgIcon } from '/@/components/Icon';
+import * as echarts from 'echarts';
 
-  let props = defineProps({
-    roadData: {
-      type: Object,
-      default: () => {
-        return {};
-      },
+let props = defineProps({
+  roadData: {
+    type: Object,
+    default: () => {
+      return {};
     },
-  });
+  },
+});
 
-  let roadTitle = ref('通风巷道长度统计');
-  let road = ref(); //获取Dom节点
-  let roadDatas = reactive({
-    label: '通风巷道总长度',
-    value: '',
-  });
-  let maxY = ref<any>(0);
+let roadTitle = ref('通风巷道长度统计');
+let road = ref(); //获取Dom节点
+let roadDatas = reactive({
+  label: '通风巷道总长度',
+  value: '',
+});
+let maxY = ref<any>(0);
 
-  // let xData = reactive(['宝德', '榆家梁', '锦界', '大柳塔', '哈拉沟']);
-  let xData = ref<any[]>([]);
-  // var yData = reactive([200, 100, 200, 200, 100]);
-  // var maxData = reactive([300, 200, 300, 300, 200]);
-  let yData = ref<any[]>([]);
-  let maxData = reactive<any[]>([]);
+// let xData = reactive(['宝德', '榆家梁', '锦界', '大柳塔', '哈拉沟']);
+let xData = ref<any[]>([]);
+// var yData = reactive([200, 100, 200, 200, 100]);
+// var maxData = reactive([300, 200, 300, 300, 200]);
+let yData = ref<any[]>([]);
+let maxData = reactive<any[]>([]);
 
-  function getOption() {
-    nextTick(() => {
-      const myChart = echarts.init(road.value);
-      let color = ['#FF9A22', '#FFD56E', '#00EC28', '#5DF076', '#12B9DB', '#6F8EF2'];
-      let option = {
-        grid: {
-          top: '14%',
-          left: '2%',
-          bottom: '4%',
-          right: '2%',
-          containLabel: true,
+function getOption() {
+  nextTick(() => {
+    const myChart = echarts.init(road.value);
+    let color = ['#FF9A22', '#FFD56E', '#00EC28', '#5DF076', '#12B9DB', '#6F8EF2'];
+    let option = {
+      grid: {
+        top: '14%',
+        left: '2%',
+        bottom: '4%',
+        right: '2%',
+        containLabel: true,
+      },
+      xAxis: {
+        data: xData.value,
+        axisTick: {
+          show: false,
         },
-        xAxis: {
-          data: xData.value,
-          axisTick: {
-            show: false,
-          },
 
-          axisLine: {
-            lineStyle: {
-              color: 'rgba(187, 187, 187,.2)',
-              type: 'dashed',
-            },
+        axisLine: {
+          lineStyle: {
+            color: 'rgba(187, 187, 187,.2)',
+            type: 'dashed',
           },
-          splitLine: {
-            show: false,
-          },
-          axisLabel: {
-            interval: 0,
-            textStyle: {
-              color: '#fff',
-              fontSize: 14,
-            },
-            margin: 20, //刻度标签与轴线之间的距离。
+        },
+        splitLine: {
+          show: false,
+        },
+        axisLabel: {
+          interval: 0,
+          textStyle: {
+            color: '#fff',
+            fontSize: 14,
           },
+          margin: 20, //刻度标签与轴线之间的距离。
         },
+      },
 
-        yAxis: {
-          max: Math.ceil(roadDatas.value + 1000),
-          name: '长度(km)',
-          nameTextStyle: {
-            color: '#3df6ff',
-            fontSize: 12,
-            lineHeight: 20,
-          },
-          splitLine: {
-            lineStyle: {
-              color: 'rgba(187, 187, 187,.2)',
-              type: 'dashed',
-            },
-          },
-          axisTick: {
-            show: false,
-          },
-          axisLine: {
-            show: false,
+      yAxis: {
+        max: Math.ceil(roadDatas.value + 1000),
+        name: '长度(km)',
+        nameTextStyle: {
+          color: '#3df6ff',
+          fontSize: 12,
+          lineHeight: 20,
+        },
+        splitLine: {
+          lineStyle: {
+            color: 'rgba(187, 187, 187,.2)',
+            type: 'dashed',
           },
-          axisLabel: {
-            textStyle: {
-              color: '#fff',
-              fontSize: 14,
-            },
+        },
+        axisTick: {
+          show: false,
+        },
+        axisLine: {
+          show: false,
+        },
+        axisLabel: {
+          textStyle: {
+            color: '#fff',
+            fontSize: 14,
           },
         },
+      },
 
-        series: [
-          {
-            //三个最低下的圆片
-            name: '',
-            type: 'pictorialBar',
-            symbolSize: [30, 10],
-            symbolOffset: [0, 7],
-            z: 12,
-            itemStyle: {
-              opacity: 1,
-              color: function (params) {
-                console.log(params, 'index-----11111111111111111');
-                // var a = params.name.slice(0, 2);
+      series: [
+        {
+          //三个最低下的圆片
+          name: '',
+          type: 'pictorialBar',
+          symbolSize: [30, 10],
+          symbolOffset: [0, 7],
+          z: 12,
+          itemStyle: {
+            opacity: 1,
+            color: function (params) {
+              console.log(params, 'index-----11111111111111111');
+              // var a = params.name.slice(0, 2);
 
-                return new echarts.graphic.LinearGradient(
-                  0,
-                  0,
-                  0,
-                  1,
-                  [
-                    {
-                      offset: 0,
-                      color: color[params.seriesIndex], // 0% 处的颜色
-                    },
-                    {
-                      offset: 1,
-                      color: color[params.seriesIndex + 1], // 100% 处的颜色
-                    },
-                  ],
-                  false
-                );
-              },
+              return new echarts.graphic.LinearGradient(
+                0,
+                0,
+                0,
+                1,
+                [
+                  {
+                    offset: 0,
+                    color: color[params.seriesIndex], // 0% 处的颜色
+                  },
+                  {
+                    offset: 1,
+                    color: color[params.seriesIndex + 1], // 100% 处的颜色
+                  },
+                ],
+                false
+              );
             },
-            data: [1, 1, 1, 1, 1],
           },
+          data: [1, 1, 1, 1, 1],
+        },
 
-          //下半截柱状图
-          {
-            name: '2020',
-            type: 'bar',
-            barWidth: 30,
-            barGap: '-100%',
-            itemStyle: {
-              //lenged文本
-              opacity: 0.7,
-              color: function (params) {
-                console.log(params, 'index-----222222222222222');
-                return new echarts.graphic.LinearGradient(
-                  0,
-                  0,
-                  0,
-                  1,
-                  [
-                    {
-                      offset: 0,
-                      color: color[params.dataIndex], // 0% 处的颜色
-                    },
-                    {
-                      offset: 1,
-                      color: color[params.dataIndex + 1], // 100% 处的颜色
-                    },
-                  ],
-                  false
-                );
-                // var a = params.name.slice(0, 2);
-                // if (a === '全矿') {
-                //   return new echarts.graphic.LinearGradient(
-                //     0,
-                //     0,
-                //     0,
-                //     1,
-                //     [
-                //       {
-                //         offset: 0,
-                //         color: '#FF9A22', // 0% 处的颜色
-                //       },
-                //       {
-                //         offset: 1,
-                //         color: '#FFD56E', // 100% 处的颜色
-                //       },
-                //     ],
-                //     false
-                //   );
-                // }
-                // // else if (a === '榆家' || a == '大柳') {
-                // //   return new echarts.graphic.LinearGradient(
-                // //     0,
-                // //     0,
-                // //     0,
-                // //     1,
-                // //     [
-                // //       {
-                // //         offset: 0,
-                // //         color: '#00EC28', // 0% 处的颜色
-                // //       },
-                // //       {
-                // //         offset: 1,
-                // //         color: '#5DF076', // 100% 处的颜色
-                // //       },
-                // //     ],
-                // //     false
-                // //   );
-                // // }
-                // // else if (a === '锦界' || a == '哈拉') {
-                // //   return new echarts.graphic.LinearGradient(
-                // //     0,
-                // //     0,
-                // //     0,
-                // //     1,
-                // //     [
-                // //       {
-                // //         offset: 0,
-                // //         color: '#12B9DB', // 0% 处的颜色
-                // //       },
-                // //       {
-                // //         offset: 1,
-                // //         color: '#6F8EF2', // 100% 处的颜色
-                // //       },
-                // //     ],
-                // //     false
-                // //   );
-                // // }
-              },
+        //下半截柱状图
+        {
+          name: '2020',
+          type: 'bar',
+          barWidth: 30,
+          barGap: '-100%',
+          itemStyle: {
+            //lenged文本
+            opacity: 0.7,
+            color: function (params) {
+              console.log(params, 'index-----222222222222222');
+              return new echarts.graphic.LinearGradient(
+                0,
+                0,
+                0,
+                1,
+                [
+                  {
+                    offset: 0,
+                    color: color[params.dataIndex], // 0% 处的颜色
+                  },
+                  {
+                    offset: 1,
+                    color: color[params.dataIndex + 1], // 100% 处的颜色
+                  },
+                ],
+                false
+              );
+              // var a = params.name.slice(0, 2);
+              // if (a === '全矿') {
+              //   return new echarts.graphic.LinearGradient(
+              //     0,
+              //     0,
+              //     0,
+              //     1,
+              //     [
+              //       {
+              //         offset: 0,
+              //         color: '#FF9A22', // 0% 处的颜色
+              //       },
+              //       {
+              //         offset: 1,
+              //         color: '#FFD56E', // 100% 处的颜色
+              //       },
+              //     ],
+              //     false
+              //   );
+              // }
+              // // else if (a === '榆家' || a == '大柳') {
+              // //   return new echarts.graphic.LinearGradient(
+              // //     0,
+              // //     0,
+              // //     0,
+              // //     1,
+              // //     [
+              // //       {
+              // //         offset: 0,
+              // //         color: '#00EC28', // 0% 处的颜色
+              // //       },
+              // //       {
+              // //         offset: 1,
+              // //         color: '#5DF076', // 100% 处的颜色
+              // //       },
+              // //     ],
+              // //     false
+              // //   );
+              // // }
+              // // else if (a === '锦界' || a == '哈拉') {
+              // //   return new echarts.graphic.LinearGradient(
+              // //     0,
+              // //     0,
+              // //     0,
+              // //     1,
+              // //     [
+              // //       {
+              // //         offset: 0,
+              // //         color: '#12B9DB', // 0% 处的颜色
+              // //       },
+              // //       {
+              // //         offset: 1,
+              // //         color: '#6F8EF2', // 100% 处的颜色
+              // //       },
+              // //     ],
+              // //     false
+              // //   );
+              // // }
             },
-            data: yData.value,
           },
+          data: yData.value,
+        },
 
-          {
-            // 替代柱状图 默认不显示颜色,是最下方柱图(邮件营销)的value值 - 20
-            type: 'bar',
-            barWidth: 30,
-            barGap: '-100%',
-            stack: '广告',
-            itemStyle: {
-              color: 'transparent',
-            },
-            data: maxData,
+        {
+          // 替代柱状图 默认不显示颜色,是最下方柱图(邮件营销)的value值 - 20
+          type: 'bar',
+          barWidth: 30,
+          barGap: '-100%',
+          stack: '广告',
+          itemStyle: {
+            color: 'transparent',
           },
+          data: maxData,
+        },
 
-          {
-            name: '', //头部
-            type: 'pictorialBar',
-            symbolSize: [30, 10],
-            symbolOffset: [0, -7],
-            z: 12,
-            symbolPosition: 'end',
-            itemStyle: {
-              color: '#163F7A',
-              opacity: 1,
-            },
-            data: maxData,
+        {
+          name: '', //头部
+          type: 'pictorialBar',
+          symbolSize: [30, 10],
+          symbolOffset: [0, -7],
+          z: 12,
+          symbolPosition: 'end',
+          itemStyle: {
+            color: '#163F7A',
+            opacity: 1,
           },
+          data: maxData,
+        },
 
-          {
-            name: '',
-            type: 'pictorialBar',
-            symbolSize: [30, 10],
-            symbolOffset: [0, -7],
-            z: 12,
-            itemStyle: {
-              opacity: 1,
-              color: function (params) {
-                console.log(params, 'index-----333333333333333');
-                return new echarts.graphic.LinearGradient(
-                  0,
-                  0,
-                  0,
-                  1,
-                  [
-                    {
-                      offset: 0,
-                      color: color[params.dataIndex], // 0% 处的颜色
-                    },
-                    {
-                      offset: 1,
-                      color: color[params.dataIndex + 1], // 100% 处的颜色
-                    },
-                  ],
-                  false
-                );
-              },
-            },
-            symbolPosition: 'end',
-
-            label: {
-              normal: {
-                show: true,
-                position: 'top',
-                fontSize: 12,
-                // fontWeight: 'bold',
-                color: '#fff',
-              },
+        {
+          name: '',
+          type: 'pictorialBar',
+          symbolSize: [30, 10],
+          symbolOffset: [0, -7],
+          z: 12,
+          itemStyle: {
+            opacity: 1,
+            color: function (params) {
+              console.log(params, 'index-----333333333333333');
+              return new echarts.graphic.LinearGradient(
+                0,
+                0,
+                0,
+                1,
+                [
+                  {
+                    offset: 0,
+                    color: color[params.dataIndex], // 0% 处的颜色
+                  },
+                  {
+                    offset: 1,
+                    color: color[params.dataIndex + 1], // 100% 处的颜色
+                  },
+                ],
+                false
+              );
             },
-            data: yData.value,
           },
+          symbolPosition: 'end',
 
-          {
-            name: '2019',
-            type: 'bar',
-            barWidth: 30,
-            barGap: '-100%',
-            z: 0,
-            itemStyle: {
-              color: '#163F7A',
-              opacity: 0.7,
+          label: {
+            normal: {
+              show: true,
+              position: 'top',
+              fontSize: 12,
+              // fontWeight: 'bold',
+              color: '#fff',
             },
+          },
+          data: yData.value,
+        },
 
-            data: maxData,
+        {
+          name: '2019',
+          type: 'bar',
+          barWidth: 30,
+          barGap: '-100%',
+          z: 0,
+          itemStyle: {
+            color: '#163F7A',
+            opacity: 0.7,
           },
-        ],
-      };
-      myChart.setOption(option);
-      window.onresize = function () {
-        myChart.resize();
-      };
-    });
-  }
 
-  watch(
-    () => props.roadData,
-    (newR, oldR) => {
-      console.log(newR, '通风巷道长度数据-------');
-      if (JSON.stringify(newR) != '{}') {
-        maxData.length = 0;
-        roadDatas.value = newR.totallength;
-        maxY.value = roadDatas.value.indexOf('.') == -1 ? roadDatas.value : roadDatas.value.substring(0, roadDatas.value.indexOf('.'));
-        if (maxY.value.length < 2) {
-          if (maxY.value[0] == 0) {
-            maxY.value = 1;
-          } else {
-            maxY.value = 10;
-          }
-        } else if (maxY.value.length < 3) {
-          maxY.value = (Number(maxY.value[0]) + 1) * 10;
-        } else if (maxY.value.length < 4) {
-          maxY.value = (Number(maxY.value[0]) + 1) * 100;
-        } else if (maxY.value.length < 5) {
-          maxY.value = (Number(maxY.value[0]) + 1) * 1000;
-        } else if (maxY.value.length < 6) {
-          maxY.value = (Number(maxY.value[0]) + 1) * 10000;
-        }
-        xData.value = newR.data1;
-        yData.value = newR.data;
-        yData.value.forEach((el) => {
-          maxData.push(el + 200);
-        });
-        getOption();
+          data: maxData,
+        },
+      ],
+    };
+    myChart.setOption(option);
+    window.onresize = function () {
+      myChart.resize();
+    };
+  });
+}
+
+watch(
+  () => props.roadData,
+  (newR, oldR) => {
+    console.log(newR, '通风巷道长度数据-------');
+    if (JSON.stringify(newR) != '{}') {
+      maxData.length = 0;
+      roadDatas.value = newR.totallength;
+      maxY.value = roadDatas.value.indexOf('.') == -1 ? roadDatas.value : roadDatas.value.substring(0, roadDatas.value.indexOf('.'));
+      if (maxY.value.length < 2 && Number(maxY.value) < 1) {
+        maxY.value = 1
+      } else if (maxY.value.length < 2 && Number(maxY.value) >= 1) {
+        maxY.value = 10
+      } else if (maxY.value.length < 3) {
+        maxY.value = (Number(maxY.value[0]) + 1) * 10
+      } else if (maxY.value.length < 4) {
+        maxY.value = (Number(maxY.value[0]) + 1) * 100
+      } else if (maxY.value.length < 5) {
+        maxY.value = (Number(maxY.value[0]) + 1) * 1000
+      } else if (maxY.value.length < 6) {
+        maxY.value = (Number(maxY.value[0]) + 1) * 10000
       }
-    },
-    {
-      immediate: true,
-      deep: true,
+      xData.value = newR.data1;
+      yData.value = newR.data;
+      yData.value.forEach((el) => {
+        maxData.push(el + 200);
+      });
+      getOption();
     }
-  );
+  },
+  {
+    immediate: true,
+    deep: true,
+  }
+);
 </script>
 <style lang="less" scoped>
-  @font-face {
+@font-face {
+  font-family: 'douyuFont';
+  src: url('../../../../assets/font/douyuFont.otf');
+}
+
+.windRoad {
+  width: 100%;
+  height: 100%;
+  position: relative;
+
+  .road-title {
+    position: absolute;
+    left: 50px;
+    top: 10px;
+    color: #fff;
     font-family: 'douyuFont';
-    src: url('../../../../assets/font/douyuFont.otf');
+    font-size: 14px;
   }
 
-  .windRoad {
-    width: 100%;
-    height: 100%;
+  .road-content {
     position: relative;
+    height: 100%;
+    padding: 52px 40px 23px 40px;
+    box-sizing: border-box;
 
-    .road-title {
+    .left-jt {
       position: absolute;
-      left: 50px;
-      top: 10px;
-      color: #fff;
-      font-family: 'douyuFont';
-      font-size: 14px;
+      top: 50%;
+      left: 18px;
+      transform: translate(0, -50%);
     }
 
-    .road-content {
-      position: relative;
-      height: 100%;
-      padding: 52px 40px 23px 40px;
-      box-sizing: border-box;
-
-      .left-jt {
-        position: absolute;
-        top: 50%;
-        left: 18px;
-        transform: translate(0, -50%);
-      }
-
-      .right-jt {
-        position: absolute;
-        top: 50%;
-        right: 18px;
-        transform: translate(0, -50%);
-      }
+    .right-jt {
+      position: absolute;
+      top: 50%;
+      right: 18px;
+      transform: translate(0, -50%);
+    }
 
-      .road-card {
-        height: 100%;
+    .road-card {
+      height: 100%;
 
-        .head-nav {
-          height: 30px;
-          line-height: 30px;
-          padding-left: 58px;
-          box-sizing: border-box;
-          background: url('../../../../../assets/images/company/lentj.png') no-repeat center;
-          background-size: 100% 100%;
+      .head-nav {
+        height: 30px;
+        line-height: 30px;
+        padding-left: 58px;
+        box-sizing: border-box;
+        background: url('../../../../../assets/images/company/lentj.png') no-repeat center;
+        background-size: 100% 100%;
 
-          span {
-            font-size: 14px;
+        span {
+          font-size: 14px;
 
-            &:nth-child(1) {
-              color: #fff;
-            }
+          &:nth-child(1) {
+            color: #fff;
+          }
 
-            &:nth-child(2) {
-              color: #3df6ff;
-            }
+          &:nth-child(2) {
+            color: #3df6ff;
           }
         }
+      }
 
-        .echart-box {
-          height: calc(100% - 30px);
+      .echart-box {
+        height: calc(100% - 30px);
 
-          .road {
-            width: 100%;
-            height: 100%;
-          }
+        .road {
+          width: 100%;
+          height: 100%;
         }
       }
     }
   }
+}
 </style>

+ 280 - 282
src/views/vent/home/colliery/components/wind-monitor.vue

@@ -8,316 +8,314 @@
 </template>
 
 <script lang="ts" setup>
-  import { ref, reactive, nextTick, onMounted, defineProps, watch } from 'vue';
-  import * as echarts from 'echarts';
-  const emit = defineEmits(['goDetail']);
+import { ref, reactive, nextTick, onMounted, defineProps, watch } from 'vue';
+import * as echarts from 'echarts';
+const emit = defineEmits(['goDetail']);
 
-  let props = defineProps({
-    flList: Array,
-  });
+let props = defineProps({
+  flList: Array,
+});
 
-  //获取dom节点
-  let windBar = ref<any>();
-  //坐标轴最大值
-  let maxY = ref<any>(0);
-  //echart数据
-  let echartData = reactive<any>({ ydata: [], xdata: [] });
-  //跳转详情
-  function getDetail() {
-    emit('goDetail', 'windrect');
-  }
-  function getOption() {
-    nextTick(() => {
-      const myChart = echarts.init(windBar.value);
-      let option = {
-        color: [
-          '#63caff',
-          '#49beff',
-          'rgba(74, 205, 255,.1)',
-          '#03387a',
-          '#03387a',
-          '#6c93ee',
-          '#a9abff',
-          '#f7a23f',
-          '#27bae7',
-          '#ff6d9d',
-          '#cb79ff',
-          '#f95b5a',
-          '#ccaf27',
-          '#38b99c',
-          '#93d0ff',
-          '#bd74e0',
-          '#fd77da',
-          '#dea700',
-        ],
-        grid: {
-          containLabel: true,
-          left: 30,
-          right: 30,
-          bottom: echartData.xdata.length > 8 ? 30 : 15,
-          top: 40,
-        },
+//获取dom节点
+let windBar = ref<any>();
+//坐标轴最大值
+let maxY = ref<any>(0);
+//echart数据
+let echartData = reactive<any>({ ydata: [], xdata: [] });
+//跳转详情
+function getDetail() {
+  emit('goDetail', 'windrect');
+}
+function getOption() {
+  nextTick(() => {
+    const myChart = echarts.init(windBar.value);
+    let option = {
+      color: [
+        '#63caff',
+        '#49beff',
+        'rgba(74, 205, 255,.1)',
+        '#03387a',
+        '#03387a',
+        '#6c93ee',
+        '#a9abff',
+        '#f7a23f',
+        '#27bae7',
+        '#ff6d9d',
+        '#cb79ff',
+        '#f95b5a',
+        '#ccaf27',
+        '#38b99c',
+        '#93d0ff',
+        '#bd74e0',
+        '#fd77da',
+        '#dea700',
+      ],
+      grid: {
+        containLabel: true,
+        left: 30,
+        right: 30,
+        bottom: echartData.xdata.length > 8 ? 30 : 15,
+        top: 40,
+      },
 
-        xAxis: {
-          type: 'category',
-          data: echartData.xdata,
-          axisLabel: {
-            formatter: function (params) {
-              var newParamsName = ''; // 最终拼接成的字符串
-              var paramsNameNumber = params.length; // 实际标签的个数
-              var provideNumber = 6; // 每行能显示的字的个数
-              var rowNumber = Math.ceil(paramsNameNumber / provideNumber); // 换行的话,需要显示几行,向上取整
-              /**
-               * 判断标签的个数是否大于规定的个数, 如果大于,则进行换行处理 如果不大于,即等于或小于,就返回原标签
-               */
-              // 条件等同于rowNumber>1
-              if (paramsNameNumber > provideNumber) {
-                /** 循环每一行,p表示行 */
-                for (var p = 0; p < rowNumber; p++) {
-                  var tempStr = ''; // 表示每一次截取的字符串
-                  var start = p * provideNumber; // 开始截取的位置
-                  var end = start + provideNumber; // 结束截取的位置
-                  // 此处特殊处理最后一行的索引值
-                  if (p == rowNumber - 1) {
-                    // 最后一次不换行
-                    tempStr = params.substring(start, paramsNameNumber);
-                  } else {
-                    // 每一次拼接字符串并换行
-                    tempStr = params.substring(start, end) + '\n';
-                  }
-                  newParamsName += tempStr; // 最终拼成的字符串
+      xAxis: {
+        type: 'category',
+        data: echartData.xdata,
+        axisLabel: {
+          formatter: function (params) {
+            var newParamsName = ''; // 最终拼接成的字符串
+            var paramsNameNumber = params.length; // 实际标签的个数
+            var provideNumber = 6; // 每行能显示的字的个数
+            var rowNumber = Math.ceil(paramsNameNumber / provideNumber); // 换行的话,需要显示几行,向上取整
+            /**
+             * 判断标签的个数是否大于规定的个数, 如果大于,则进行换行处理 如果不大于,即等于或小于,就返回原标签
+             */
+            // 条件等同于rowNumber>1
+            if (paramsNameNumber > provideNumber) {
+              /** 循环每一行,p表示行 */
+              for (var p = 0; p < rowNumber; p++) {
+                var tempStr = ''; // 表示每一次截取的字符串
+                var start = p * provideNumber; // 开始截取的位置
+                var end = start + provideNumber; // 结束截取的位置
+                // 此处特殊处理最后一行的索引值
+                if (p == rowNumber - 1) {
+                  // 最后一次不换行
+                  tempStr = params.substring(start, paramsNameNumber);
+                } else {
+                  // 每一次拼接字符串并换行
+                  tempStr = params.substring(start, end) + '\n';
                 }
-              } else {
-                // 将旧标签的值赋给新标签
-                newParamsName = params;
+                newParamsName += tempStr; // 最终拼成的字符串
               }
-              //将最终的字符串返回
-              return newParamsName;
-            },
-            fontSize: 14,
-            margin: 15,
-            interval: 0,
-            textStyle: {
-              color: '#b3b8cc',
-            },
-          },
-          axisLine: {
-            lineStyle: {
-              color: 'rgba(62, 103, 164)',
-            },
+            } else {
+              // 将旧标签的值赋给新标签
+              newParamsName = params;
+            }
+            //将最终的字符串返回
+            return newParamsName;
           },
-          splitLine: {
-            show: false,
+          fontSize: 14,
+          margin: 15,
+          interval: 0,
+          textStyle: {
+            color: '#b3b8cc',
           },
-          axisTick: {
-            show: false,
+        },
+        axisLine: {
+          lineStyle: {
+            color: 'rgba(62, 103, 164)',
           },
         },
+        splitLine: {
+          show: false,
+        },
+        axisTick: {
+          show: false,
+        },
+      },
 
-        yAxis: {
-          type: 'value',
-          name: '(m³/min)',
-          // max: maxY.value,
-          axisLabel: {
-            textStyle: {
-              fontSize: 14,
-              color: '#b3b8cc',
-            },
-          },
-          nameTextStyle: {
-            color: '#fff',
-            fontSize: 12,
-            lineHeight: 10,
-          },
-          splitLine: {
-            lineStyle: {
-              color: 'rgba(62, 103, 164,.4)',
-            },
-          },
-          axisLine: {
-            show: false,
+      yAxis: {
+        type: 'value',
+        name: '(m³/min)',
+        // max: maxY.value,
+        axisLabel: {
+          textStyle: {
+            fontSize: 14,
+            color: '#b3b8cc',
           },
-          axisTick: {
-            show: false,
+        },
+        nameTextStyle: {
+          color: '#fff',
+          fontSize: 12,
+          lineHeight: 10,
+        },
+        splitLine: {
+          lineStyle: {
+            color: 'rgba(62, 103, 164,.4)',
           },
         },
-        series: [
-          {
-            data: echartData.ydata,
-            type: 'bar',
-            barMaxWidth: 'auto',
-            barWidth: 25,
-            itemStyle: {
-              color: {
-                x: 0,
-                y: 0,
-                x2: 0,
-                y2: 1,
-                type: 'linear',
-                global: false,
-                colorStops: [
-                  {
-                    offset: 0,
-                    color: '#0b9eff',
-                  },
-                  {
-                    offset: 1,
-                    color: '#63caff',
-                  },
-                ],
-              },
-            },
-            label: {
-              show: true,
-              position: 'top',
-              distance: 10,
-              color: '#fff',
+        axisLine: {
+          show: false,
+        },
+        axisTick: {
+          show: false,
+        },
+      },
+      series: [
+        {
+          data: echartData.ydata,
+          type: 'bar',
+          barMaxWidth: 'auto',
+          barWidth: 25,
+          itemStyle: {
+            color: {
+              x: 0,
+              y: 0,
+              x2: 0,
+              y2: 1,
+              type: 'linear',
+              global: false,
+              colorStops: [
+                {
+                  offset: 0,
+                  color: '#0b9eff',
+                },
+                {
+                  offset: 1,
+                  color: '#63caff',
+                },
+              ],
             },
           },
-          {
-            data: [1, 1, 1, 1, 1, 1, 1, 1],
-            type: 'pictorialBar',
-            barMaxWidth: '25',
-            symbol: 'diamond',
-            symbolOffset: [0, '50%'],
-            symbolSize: [25, 15],
-          },
-          {
-            data: echartData.ydata,
-            type: 'pictorialBar',
-            barMaxWidth: '25',
-            symbolPosition: 'end',
-            symbol: 'diamond',
-            symbolOffset: [0, '-50%'],
-            symbolSize: [25, 12],
-            zlevel: 2,
-          },
-          {
-            data: [741, 741, 741, 741, 741, 741, 741, 741],
-            type: 'bar',
-            barMaxWidth: 'auto',
-            barWidth: 25,
-            barGap: '-100%',
-            zlevel: -1,
-          },
-          {
-            data: [1, 1, 1, 1, 1, 1, 1, 1],
-            type: 'pictorialBar',
-            barMaxWidth: '25',
-            symbol: 'diamond',
-            symbolOffset: [0, '50%'],
-            symbolSize: [25, 15],
-            zlevel: -2,
-          },
-          {
-            data: [741, 741, 741, 741, 741, 741, 741, 741],
-            type: 'pictorialBar',
-            barMaxWidth: '25',
-            symbolPosition: 'end',
-            symbol: 'diamond',
-            symbolOffset: [0, '-50%'],
-            symbolSize: [25, 12],
-            zlevel: -1,
-          },
-        ],
-        dataZoom: [
-          {
-            // 这部分是关键
-            show: echartData.xdata.length > 8 ? true : false,
-            type: 'slider', // 这里可以选择你需要的类型,例如 'inside'
-            start: 0, // 数据窗口范围的起始百分比
-            end: echartData.xdata.length > 8 && echartData.xdata.length < 16 ? 50 : echartData.xdata.length > 16 ? 25 : 100, // 数据窗口范围的结束百分比
-            height: 10, // 设置缩放条高度
-            left: 'center',
-            bottom: 25,
-            labelPrecision: 0, // 标签精度,默认为auto
-            showDetail: false, // 是否显示详情
-            showDataShadow: false, // 是否显示数据阴影
+          label: {
+            show: true,
+            position: 'top',
+            distance: 10,
+            color: '#fff',
           },
-        ],
-        tooltip: {
-          trigger: 'axis',
-          show: false,
         },
-      };
-      myChart.setOption(option);
-      window.onresize = function () {
-        myChart.resize();
-      };
-    });
-  }
-  watch(
-    () => props.flList,
-    (val) => {
-      echartData.xdata.length = 0;
-      echartData.ydata.length = 0;
-      val.forEach((el: any) => {
-        if (el.readData.m3) {
-          echartData.xdata.push(el.strinstallpos);
-          echartData.ydata.push(el.readData.m3);
-        }
-      });
-      maxY.value = echartData.ydata.reduce((acr, cur) => {
-        return parseFloat(acr) > parseFloat(cur) ? parseFloat(acr) : parseFloat(cur);
-      });
-      maxY.value =
-        maxY.value.toString().indexOf('.') == -1 ? maxY.value.toString() : maxY.value.toString().substring(0, maxY.value.toString().indexOf('.'));
-      if (maxY.value.length < 2) {
-        if (maxY.value[0] == 0) {
-          maxY.value = 1;
-        } else {
-          maxY.value = 10;
-        }
-      } else if (maxY.value.length < 3) {
-        maxY.value = (Number(maxY.value[0]) + 1) * 10;
-      } else if (maxY.value.length < 4) {
-        maxY.value = (Number(maxY.value[0]) + 1) * 100;
-      } else if (maxY.value.length < 5) {
-        maxY.value = (Number(maxY.value[0]) + 1) * 1000;
-      } else if (maxY.value.length < 6) {
-        maxY.value = (Number(maxY.value[0]) + 1) * 10000;
+        {
+          data: [1, 1, 1, 1, 1, 1, 1, 1],
+          type: 'pictorialBar',
+          barMaxWidth: '25',
+          symbol: 'diamond',
+          symbolOffset: [0, '50%'],
+          symbolSize: [25, 15],
+        },
+        {
+          data: echartData.ydata,
+          type: 'pictorialBar',
+          barMaxWidth: '25',
+          symbolPosition: 'end',
+          symbol: 'diamond',
+          symbolOffset: [0, '-50%'],
+          symbolSize: [25, 12],
+          zlevel: 2,
+        },
+        {
+          data: [741, 741, 741, 741, 741, 741, 741, 741],
+          type: 'bar',
+          barMaxWidth: 'auto',
+          barWidth: 25,
+          barGap: '-100%',
+          zlevel: -1,
+        },
+        {
+          data: [1, 1, 1, 1, 1, 1, 1, 1],
+          type: 'pictorialBar',
+          barMaxWidth: '25',
+          symbol: 'diamond',
+          symbolOffset: [0, '50%'],
+          symbolSize: [25, 15],
+          zlevel: -2,
+        },
+        {
+          data: [741, 741, 741, 741, 741, 741, 741, 741],
+          type: 'pictorialBar',
+          barMaxWidth: '25',
+          symbolPosition: 'end',
+          symbol: 'diamond',
+          symbolOffset: [0, '-50%'],
+          symbolSize: [25, 12],
+          zlevel: -1,
+        },
+      ],
+      dataZoom: [
+        {
+          // 这部分是关键
+          show: echartData.xdata.length > 8 ? true : false,
+          type: 'slider', // 这里可以选择你需要的类型,例如 'inside'
+          start: 0, // 数据窗口范围的起始百分比
+          end: echartData.xdata.length > 8 && echartData.xdata.length < 16 ? 50 : echartData.xdata.length > 16 ? 25 : 100, // 数据窗口范围的结束百分比
+          height: 10, // 设置缩放条高度
+          left: 'center',
+          bottom: 25,
+          labelPrecision: 0, // 标签精度,默认为auto
+          showDetail: false, // 是否显示详情
+          showDataShadow: false, // 是否显示数据阴影
+        },
+      ],
+      tooltip: {
+        trigger: 'axis',
+        show: false,
+      },
+    };
+    myChart.setOption(option);
+    window.onresize = function () {
+      myChart.resize();
+    };
+  });
+}
+watch(
+  () => props.flList,
+  (val) => {
+    echartData.xdata.length = 0;
+    echartData.ydata.length = 0;
+    val.forEach((el: any) => {
+      if (el.readData.m3) {
+        echartData.xdata.push(el.strinstallpos);
+        echartData.ydata.push(el.readData.m3);
       }
-      getOption();
-    },
-    {
-      deep: true,
+    });
+    maxY.value = echartData.ydata.reduce((acr, cur) => {
+      return parseFloat(acr) > parseFloat(cur) ? parseFloat(acr) : parseFloat(cur);
+    });
+    maxY.value =
+      maxY.value.toString().indexOf('.') == -1 ? maxY.value.toString() : maxY.value.toString().substring(0, maxY.value.toString().indexOf('.'));
+    if (maxY.value.length < 2 && Number(maxY.value) < 1) {
+      maxY.value = 1
+    } else if (maxY.value.length < 2 && Number(maxY.value) >= 1) {
+      maxY.value = 10
+    } else if (maxY.value.length < 3) {
+      maxY.value = (Number(maxY.value[0]) + 1) * 10
+    } else if (maxY.value.length < 4) {
+      maxY.value = (Number(maxY.value[0]) + 1) * 100
+    } else if (maxY.value.length < 5) {
+      maxY.value = (Number(maxY.value[0]) + 1) * 1000
+    } else if (maxY.value.length < 6) {
+      maxY.value = (Number(maxY.value[0]) + 1) * 10000
     }
-  );
+    getOption();
+  },
+  {
+    deep: true,
+  }
+);
 
-  onMounted(() => {});
+onMounted(() => { });
 </script>
 
 <style lang="less" scoped>
-  .windMonitor {
-    width: 100%;
-    height: 100%;
-    position: relative;
+.windMonitor {
+  width: 100%;
+  height: 100%;
+  position: relative;
 
-    .title-top {
-      position: absolute;
-      top: 9px;
-      left: 46px;
-      color: #fff;
-      font-size: 16px;
-      font-family: 'douyuFont';
-      cursor: pointer;
+  .title-top {
+    position: absolute;
+    top: 9px;
+    left: 46px;
+    color: #fff;
+    font-size: 16px;
+    font-family: 'douyuFont';
+    cursor: pointer;
 
-      &:hover {
-        color: #66ffff;
-      }
+    &:hover {
+      color: #66ffff;
     }
+  }
 
-    .wind-contents {
-      position: absolute;
-      left: 0;
-      top: 36px;
-      width: 100%;
-      height: calc(100% - 36px);
+  .wind-contents {
+    position: absolute;
+    left: 0;
+    top: 36px;
+    width: 100%;
+    height: calc(100% - 36px);
 
-      .wind-bar {
-        width: 100%;
-        height: 100%;
-      }
+    .wind-bar {
+      width: 100%;
+      height: 100%;
     }
   }
+}
 </style>

+ 4 - 2
src/views/vent/monitorManager/alarmMonitor/common/closeWall.vue

@@ -191,7 +191,9 @@ function getmaxY() {
     return acr > cur ? acr : cur;
   });
   maxY.value = maxY.value.toString().indexOf('.') == -1 ? maxY.value.toString() : maxY.value.toString().substring(0, maxY.value.toString().indexOf('.'))
-  if (maxY.value.length < 2) {
+  if (maxY.value.length < 2 && Number(maxY.value) < 1) {
+    maxY.value = 1
+  } else if (maxY.value.length < 2 && Number(maxY.value) >= 1) {
     maxY.value = 10
   } else if (maxY.value.length < 3) {
     maxY.value = (Number(maxY.value[0]) + 1) * 10
@@ -200,7 +202,7 @@ function getmaxY() {
   } else if (maxY.value.length < 5) {
     maxY.value = (Number(maxY.value[0]) + 1) * 1000
   } else if (maxY.value.length < 6) {
-    maxY.value = (Number(maxYq.value[0]) + 1) * 10000
+    maxY.value = (Number(maxY.value[0]) + 1) * 10000
   }
 }
 //密闭参数选项切换

+ 410 - 411
src/views/vent/monitorManager/alarmMonitor/common/fireWork.vue

@@ -37,7 +37,8 @@
         <div class="text">束管系统监测</div>
         <div class="select-box">
           <a-select v-model:value="selectData" style="width: 250px" @change="changeSelect">
-            <a-select-option v-for="file in selectList" :key="file.label" :value="file.value">{{ file.label }}</a-select-option>
+            <a-select-option v-for="file in selectList" :key="file.label" :value="file.value">{{ file.label
+              }}</a-select-option>
           </a-select>
         </div>
       </div>
@@ -67,489 +68,487 @@
 </template>
 
 <script lang="ts" setup>
-  import { onMounted, ref, reactive, watch, defineProps } from 'vue';
-  import imgUrl from '../../../../../assets/images/fire/pie.png';
-  import echartLine from './echartLine.vue';
-  import echartLine1 from './echartLine1.vue';
-  import { topList, contentList } from '../common.data';
-
-  let props = defineProps({
-    listData: Object,
+import { onMounted, ref, reactive, watch, defineProps } from 'vue';
+import imgUrl from '../../../../../assets/images/fire/pie.png';
+import echartLine from './echartLine.vue';
+import echartLine1 from './echartLine1.vue';
+import { topList, contentList } from '../common.data';
+
+let props = defineProps({
+  listData: Object,
+});
+let selectSj = ref<any[]>([]);
+let selectData = ref('');
+let selectList = reactive<any[]>([]);
+let maxY1 = ref<any>(0);
+let maxY = ref(100);
+let echartDw = ref('(­°C)');
+//光钎测温-图表数据
+let echartDataGq = reactive({
+  maxData: {
+    lengedData: '当前温度',
+    data: [],
+  },
+  xData: [],
+});
+//束管监测-图表数据
+let echartDataSg = reactive({
+  xData: [],
+  yData: [],
+  lengedData: 'O₂',
+  lengedDataName: '(%)',
+});
+let echartDataSgList = reactive<any[]>([]);
+
+function getmaxY() {
+  maxY1.value = echartDataSg.yData.reduce((acr, cur) => {
+    return acr > cur ? acr : cur;
   });
-  let selectSj = ref<any[]>([]);
-  let selectData = ref('');
-  let selectList = reactive<any[]>([]);
-  let maxY1 = ref<any>(0);
-  let maxY = ref(100);
-  let echartDw = ref('(­°C)');
-  //光钎测温-图表数据
-  let echartDataGq = reactive({
-    maxData: {
-      lengedData: '当前温度',
-      data: [],
-    },
-    xData: [],
-  });
-  //束管监测-图表数据
-  let echartDataSg = reactive({
-    xData: [],
-    yData: [],
-    lengedData: 'O₂',
-    lengedDataName: '(%)',
-  });
-  let echartDataSgList = reactive<any[]>([]);
-
-  function getmaxY() {
-    maxY1.value = echartDataSg.yData.reduce((acr, cur) => {
-      return acr > cur ? acr : cur;
-    });
-    maxY1.value =
-      maxY1.value.toString().indexOf('.') == -1 ? maxY1.value.toString() : maxY1.value.toString().substring(0, maxY1.value.toString().indexOf('.'));
-    if (maxY1.value.length < 2) {
-      if (maxY1.value[0] == 0) {
-        maxY1.value = 1;
-      } else {
-        maxY1.value = 10;
-      }
-    } else if (maxY1.value.length < 3) {
-      maxY1.value = (Number(maxY1.value[0]) + 1) * 10;
-    } else if (maxY1.value.length < 4) {
-      maxY1.value = (Number(maxY1.value[0]) + 1) * 100;
-    } else if (maxY1.value.length < 5) {
-      maxY1.value = (Number(maxY1.value[0]) + 1) * 1000;
-    } else if (maxY1.value.length < 6) {
-      maxY1.value = (Number(maxY1.value[0]) + 1) * 10000;
-    }
+  maxY1.value =
+    maxY1.value.toString().indexOf('.') == -1 ? maxY1.value.toString() : maxY1.value.toString().substring(0, maxY1.value.toString().indexOf('.'));
+  if (maxY1.value.length < 2 && Number(maxY1.value) < 1) {
+    maxY1.value = 1
+  } else if (maxY1.value.length < 2 && Number(maxY1.value) >= 1) {
+    maxY1.value = 10
+  } else if (maxY1.value.length < 3) {
+    maxY1.value = (Number(maxY1.value[0]) + 1) * 10
+  } else if (maxY1.value.length < 4) {
+    maxY1.value = (Number(maxY1.value[0]) + 1) * 100
+  } else if (maxY1.value.length < 5) {
+    maxY1.value = (Number(maxY1.value[0]) + 1) * 1000
+  } else if (maxY1.value.length < 6) {
+    maxY1.value = (Number(maxY1.value[0]) + 1) * 10000
+  }
+}
+//束管实时数据选项点击
+function getSgClick(items) {
+  echartDataSg.xData.length = 0;
+  echartDataSg.yData.length = 0;
+  echartDataSg.lengedData = items.title;
+  echartDataSg.lengedDataName = items.dw;
+
+  switch (items.title) {
+    case 'O₂':
+      echartDataSgList.forEach((el) => {
+        echartDataSg.xData.push(el.time);
+        echartDataSg.yData.push(el.o2val);
+      });
+      getmaxY();
+      break;
+    case 'C₂H₄':
+      echartDataSgList.forEach((el) => {
+        echartDataSg.xData.push(el.time);
+        echartDataSg.yData.push(el.ch2val);
+      });
+      getmaxY();
+      break;
+    case 'CO':
+      echartDataSgList.forEach((el) => {
+        echartDataSg.xData.push(el.time);
+        echartDataSg.yData.push(el.coval);
+      });
+      getmaxY();
+      break;
+    case 'CH₄':
+      echartDataSgList.forEach((el) => {
+        echartDataSg.xData.push(el.time);
+        echartDataSg.yData.push(el.chval);
+      });
+      getmaxY();
+      break;
+    case 'CO₂':
+      echartDataSgList.forEach((el) => {
+        echartDataSg.xData.push(el.time);
+        echartDataSg.yData.push(el.co2val);
+      });
+      getmaxY();
+      break;
+    case 'C₂H₂':
+      echartDataSgList.forEach((el) => {
+        echartDataSg.xData.push(el.time);
+        echartDataSg.yData.push(el.gasval);
+      });
+      getmaxY();
+      break;
   }
-  //束管实时数据选项点击
-  function getSgClick(items) {
+}
+function changeSelect(val) {
+  selectData.value = val;
+  let data = selectSj.value.filter((v) => v.strinstallpos == selectData.value)[0];
+  contentList[0].list[0].value = data.readData.o2val;
+  contentList[0].list[1].value = data.readData.ch2val;
+  contentList[1].list[0].value = data.readData.coval;
+  contentList[1].list[1].value = data.readData.chval;
+  contentList[2].list[0].value = data.readData.co2val;
+  contentList[2].list[1].value = data.readData.gasval;
+  contentList.forEach((el) => {
+    el.list.forEach((v) => {
+      v.time = data.readTime.substring(0, data.readTime.lastIndexOf(':'));
+    });
+  });
+}
+
+watch(
+  () => props.listData,
+  (val, val1) => {
+    echartDataGq.xData.length = 0;
+    echartDataGq.maxData.data.length = 0;
+    echartDataSgList.length = 0;
     echartDataSg.xData.length = 0;
     echartDataSg.yData.length = 0;
-    echartDataSg.lengedData = items.title;
-    echartDataSg.lengedDataName = items.dw;
-
-    switch (items.title) {
-      case 'O₂':
-        echartDataSgList.forEach((el) => {
-          echartDataSg.xData.push(el.time);
-          echartDataSg.yData.push(el.o2val);
+    selectList.length = 0;
+    if (JSON.stringify(val) != '{}') {
+      if (val.fiber.length != 0) {
+        topList[0].value = val.fiber[0].readData.fmax;
+        topList[1].value = val.fiber[0].readData.fmin;
+        topList[2].value = val.fiber[0].readData.favg;
+        topList[3].text = val.fiber[0].warnFlag ? '报警' : '正常';
+        JSON.parse(val.fiber[0].readData.fibreTemperature).forEach((el) => {
+          echartDataGq.xData.push(el.pos);
+          echartDataGq.maxData.data.push(el.value);
         });
-        getmaxY();
-        break;
-      case 'C₂H₄':
-        echartDataSgList.forEach((el) => {
-          echartDataSg.xData.push(el.time);
-          echartDataSg.yData.push(el.ch2val);
-        });
-        getmaxY();
-        break;
-      case 'CO':
-        echartDataSgList.forEach((el) => {
-          echartDataSg.xData.push(el.time);
-          echartDataSg.yData.push(el.coval);
-        });
-        getmaxY();
-        break;
-      case 'CH₄':
-        echartDataSgList.forEach((el) => {
-          echartDataSg.xData.push(el.time);
-          echartDataSg.yData.push(el.chval);
+      } else {
+        topList[0].value = '--';
+        topList[1].value = '--';
+        topList[2].value = '--';
+        topList[3].text = '正常';
+      }
+
+      if (val.bundletube.length != 0) {
+        selectSj.value = val.bundletube;
+        selectSj.value.forEach((el) => {
+          selectList.push({ label: el.strinstallpos, value: el.strinstallpos });
         });
-        getmaxY();
-        break;
-      case 'CO₂':
-        echartDataSgList.forEach((el) => {
-          echartDataSg.xData.push(el.time);
-          echartDataSg.yData.push(el.co2val);
+        selectData.value = selectData.value ? selectData.value : selectList[0].value;
+        let dataVal = selectData.value ? selectSj.value.filter((v) => v.strinstallpos == selectData.value)[0] : selectSj.value[0];
+        contentList[0].list[0].value = dataVal.readData.o2val;
+        contentList[0].list[1].value = dataVal.readData.ch2val;
+        contentList[1].list[0].value = dataVal.readData.coval;
+        contentList[1].list[1].value = dataVal.readData.chval;
+        contentList[2].list[0].value = dataVal.readData.co2val;
+        contentList[2].list[1].value = dataVal.readData.gasval;
+        contentList.forEach((el) => {
+          el.list.forEach((v) => {
+            v.time = dataVal.readTime.substring(0, dataVal.readTime.lastIndexOf(':'));
+          });
         });
-        getmaxY();
-        break;
-      case 'C₂H₂':
-        echartDataSgList.forEach((el) => {
+
+        dataVal.history.forEach((el) => {
           echartDataSg.xData.push(el.time);
-          echartDataSg.yData.push(el.gasval);
+          if (echartDataSg.lengedData == 'O₂') {
+            echartDataSg.yData.push(el.o2val);
+          } else if (echartDataSg.lengedData == 'C₂H₄') {
+            echartDataSg.yData.push(el.ch2val);
+          } else if (echartDataSg.lengedData == 'C₂H₂') {
+            echartDataSg.yData.push(el.gasval);
+          } else if (echartDataSg.lengedData == 'CH₄') {
+            echartDataSg.yData.push(el.chval);
+          } else if (echartDataSg.lengedData == 'CO') {
+            echartDataSg.yData.push(el.coval);
+          } else if (echartDataSg.lengedData == 'CO₂') {
+            echartDataSg.yData.push(el.co2val);
+          }
+          echartDataSgList.push(el);
         });
         getmaxY();
-        break;
-    }
-  }
-  function changeSelect(val) {
-    selectData.value = val;
-    let data = selectSj.value.filter((v) => v.strinstallpos == selectData.value)[0];
-    contentList[0].list[0].value = data.readData.o2val;
-    contentList[0].list[1].value = data.readData.ch2val;
-    contentList[1].list[0].value = data.readData.coval;
-    contentList[1].list[1].value = data.readData.chval;
-    contentList[2].list[0].value = data.readData.co2val;
-    contentList[2].list[1].value = data.readData.gasval;
-    contentList.forEach((el) => {
-      el.list.forEach((v) => {
-        v.time = data.readTime.substring(0, data.readTime.lastIndexOf(':'));
-      });
-    });
-  }
-
-  watch(
-    () => props.listData,
-    (val, val1) => {
-      echartDataGq.xData.length = 0;
-      echartDataGq.maxData.data.length = 0;
-      echartDataSgList.length = 0;
-      echartDataSg.xData.length = 0;
-      echartDataSg.yData.length = 0;
-      selectList.length = 0;
-      if (JSON.stringify(val) != '{}') {
-        if (val.fiber.length != 0) {
-          topList[0].value = val.fiber[0].readData.fmax;
-          topList[1].value = val.fiber[0].readData.fmin;
-          topList[2].value = val.fiber[0].readData.favg;
-          topList[3].text = val.fiber[0].warnFlag ? '报警' : '正常';
-          JSON.parse(val.fiber[0].readData.fibreTemperature).forEach((el) => {
-            echartDataGq.xData.push(el.pos);
-            echartDataGq.maxData.data.push(el.value);
-          });
-        } else {
-          topList[0].value = '--';
-          topList[1].value = '--';
-          topList[2].value = '--';
-          topList[3].text = '正常';
-        }
-
-        if (val.bundletube.length != 0) {
-          selectSj.value = val.bundletube;
-          selectSj.value.forEach((el) => {
-            selectList.push({ label: el.strinstallpos, value: el.strinstallpos });
-          });
-          selectData.value = selectData.value ? selectData.value : selectList[0].value;
-          let dataVal = selectData.value ? selectSj.value.filter((v) => v.strinstallpos == selectData.value)[0] : selectSj.value[0];
-          contentList[0].list[0].value = dataVal.readData.o2val;
-          contentList[0].list[1].value = dataVal.readData.ch2val;
-          contentList[1].list[0].value = dataVal.readData.coval;
-          contentList[1].list[1].value = dataVal.readData.chval;
-          contentList[2].list[0].value = dataVal.readData.co2val;
-          contentList[2].list[1].value = dataVal.readData.gasval;
-          contentList.forEach((el) => {
-            el.list.forEach((v) => {
-              v.time = dataVal.readTime.substring(0, dataVal.readTime.lastIndexOf(':'));
-            });
-          });
-
-          dataVal.history.forEach((el) => {
-            echartDataSg.xData.push(el.time);
-            if (echartDataSg.lengedData == 'O₂') {
-              echartDataSg.yData.push(el.o2val);
-            } else if (echartDataSg.lengedData == 'C₂H₄') {
-              echartDataSg.yData.push(el.ch2val);
-            } else if (echartDataSg.lengedData == 'C₂H₂') {
-              echartDataSg.yData.push(el.gasval);
-            } else if (echartDataSg.lengedData == 'CH₄') {
-              echartDataSg.yData.push(el.chval);
-            } else if (echartDataSg.lengedData == 'CO') {
-              echartDataSg.yData.push(el.coval);
-            } else if (echartDataSg.lengedData == 'CO₂') {
-              echartDataSg.yData.push(el.co2val);
-            }
-            echartDataSgList.push(el);
-          });
-          getmaxY();
-        } else {
-          contentList[0].list[0].value = '--';
-          contentList[0].list[1].value = '--';
-          contentList[1].list[0].value = '--';
-          contentList[1].list[1].value = '--';
-          contentList[2].list[0].value = '--';
-          contentList[2].list[1].value = '--';
-          contentList.forEach((el) => {
-            el.list.forEach((v) => {
-              v.time = '--';
-            });
+      } else {
+        contentList[0].list[0].value = '--';
+        contentList[0].list[1].value = '--';
+        contentList[1].list[0].value = '--';
+        contentList[1].list[1].value = '--';
+        contentList[2].list[0].value = '--';
+        contentList[2].list[1].value = '--';
+        contentList.forEach((el) => {
+          el.list.forEach((v) => {
+            v.time = '--';
           });
-        }
+        });
       }
-    },
-    { deep: true }
-  );
+    }
+  },
+  { deep: true }
+);
 </script>
 
 <style lang="less" scoped>
-  .fireWork {
+.fireWork {
+  width: 100%;
+  height: 100%;
+  padding: 20px;
+  box-sizing: border-box;
+
+  .work-nav {
+    height: 15%;
     width: 100%;
-    height: 100%;
-    padding: 20px;
-    box-sizing: border-box;
-
-    .work-nav {
-      height: 15%;
-      width: 100%;
-      margin-bottom: 20px;
-      background: url('../../../../../assets/images/fire/bj1.png') no-repeat center;
-      background-size: 100% 100%;
+    margin-bottom: 20px;
+    background: url('../../../../../assets/images/fire/bj1.png') no-repeat center;
+    background-size: 100% 100%;
+    display: flex;
+    justify-content: space-between;
+    align-items: center;
+
+    .nav {
       display: flex;
-      justify-content: space-between;
+      justify-content: center;
       align-items: center;
 
-      .nav {
-        display: flex;
-        justify-content: center;
-        align-items: center;
-
-        &:nth-child(1) {
-          flex: 1;
-          height: 100%;
-          border-right: 2px solid;
-          border-image: linear-gradient(to bottom, transparent, rgba(2, 70, 136, 1), transparent) 1 1 1;
-        }
-
-        &:nth-child(2) {
-          flex: 1;
-          height: 100%;
-          border-right: 2px solid;
-          border-image: linear-gradient(to bottom, transparent, rgba(2, 70, 136, 1), transparent) 1 1 1;
-        }
-
-        &:nth-child(3) {
-          flex: 1;
-          height: 100%;
-          border-right: 2px solid;
-          border-image: linear-gradient(to bottom, transparent, rgba(2, 70, 136, 1), transparent) 1 1 1;
-        }
-
-        &:nth-child(4) {
-          flex: 0.6;
-          color: #b3b8cc;
-          font-size: 16px;
-          height: 100%;
-          border-right: 2px solid;
-          border-image: linear-gradient(to bottom, transparent, rgba(2, 70, 136, 1), transparent) 1 1 1;
-        }
-
-        &:nth-child(5) {
-          flex: 1.4;
-          height: 100%;
-
-          .percent {
-            width: 100%;
-            height: 82%;
-            padding: 0px 20px;
-            box-sizing: border-box;
-            display: flex;
-            flex-direction: column;
-            justify-content: space-around;
-
-            .title {
-              font-size: 14px;
-              padding: 5px 0px;
-              color: #b3b8cc;
-              text-align: center;
-            }
+      &:nth-child(1) {
+        flex: 1;
+        height: 100%;
+        border-right: 2px solid;
+        border-image: linear-gradient(to bottom, transparent, rgba(2, 70, 136, 1), transparent) 1 1 1;
+      }
 
-            .value {
-              display: flex;
-              justify-content: space-between;
+      &:nth-child(2) {
+        flex: 1;
+        height: 100%;
+        border-right: 2px solid;
+        border-image: linear-gradient(to bottom, transparent, rgba(2, 70, 136, 1), transparent) 1 1 1;
+      }
 
-              span {
-                font-family: 'douyuFont';
-                font-size: 18px;
-              }
-            }
-          }
-        }
+      &:nth-child(3) {
+        flex: 1;
+        height: 100%;
+        border-right: 2px solid;
+        border-image: linear-gradient(to bottom, transparent, rgba(2, 70, 136, 1), transparent) 1 1 1;
+      }
 
-        .pic {
-          width: 30%;
-          height: 82%;
+      &:nth-child(4) {
+        flex: 0.6;
+        color: #b3b8cc;
+        font-size: 16px;
+        height: 100%;
+        border-right: 2px solid;
+        border-image: linear-gradient(to bottom, transparent, rgba(2, 70, 136, 1), transparent) 1 1 1;
+      }
 
-          img {
-            width: 100%;
-            height: 100%;
-          }
-        }
+      &:nth-child(5) {
+        flex: 1.4;
+        height: 100%;
 
-        .content {
+        .percent {
+          width: 100%;
           height: 82%;
-          margin-left: 15px;
-          color: #fff;
+          padding: 0px 20px;
+          box-sizing: border-box;
           display: flex;
           flex-direction: column;
           justify-content: space-around;
 
-          span {
+          .title {
             font-size: 14px;
+            padding: 5px 0px;
+            color: #b3b8cc;
+            text-align: center;
+          }
 
-            &:nth-child(1) {
-              padding: 5px 0px;
-              color: #b3b8cc;
-            }
+          .value {
+            display: flex;
+            justify-content: space-between;
 
-            &:nth-child(2) {
+            span {
               font-family: 'douyuFont';
-              font-size: 16px;
-              color: #3df6ff;
+              font-size: 18px;
             }
           }
         }
       }
 
-      .nav:nth-child(1) .pic {
-        background: url('../../../../../assets/images/fire/max.svg') no-repeat center;
-        background-size: 50% 50%;
-      }
+      .pic {
+        width: 30%;
+        height: 82%;
 
-      .nav:nth-child(2) .pic {
-        background: url('../../../../../assets/images/fire/min.svg') no-repeat center;
-        background-size: 50% 50%;
-      }
-
-      .nav:nth-child(3) .pic {
-        background: url('../../../../../assets/images/fire/pj.svg') no-repeat center;
-        background-size: 50% 50%;
+        img {
+          width: 100%;
+          height: 100%;
+        }
       }
-    }
 
-    .center-echart {
-      width: 100%;
-      height: 32%;
-      padding: 10px;
-      margin-bottom: 20px;
-      box-sizing: border-box;
-      background: url('../../../../../assets/images/fire/bj1.png') no-repeat center;
-      background-size: 100% 100%;
-
-      .nav-title {
-        height: 30px;
+      .content {
+        height: 82%;
+        margin-left: 15px;
+        color: #fff;
         display: flex;
-        justify-content: space-between;
-        align-items: center;
+        flex-direction: column;
+        justify-content: space-around;
 
-        .title {
-          font-family: 'douyuFont';
+        span {
           font-size: 14px;
-          color: #fff;
-          // color: #3df6ff;
+
+          &:nth-child(1) {
+            padding: 5px 0px;
+            color: #b3b8cc;
+          }
+
+          &:nth-child(2) {
+            font-family: 'douyuFont';
+            font-size: 16px;
+            color: #3df6ff;
+          }
         }
       }
+    }
 
-      .echart-box {
-        width: 100%;
-        height: calc(100% - 30px);
+    .nav:nth-child(1) .pic {
+      background: url('../../../../../assets/images/fire/max.svg') no-repeat center;
+      background-size: 50% 50%;
+    }
+
+    .nav:nth-child(2) .pic {
+      background: url('../../../../../assets/images/fire/min.svg') no-repeat center;
+      background-size: 50% 50%;
+    }
+
+    .nav:nth-child(3) .pic {
+      background: url('../../../../../assets/images/fire/pj.svg') no-repeat center;
+      background-size: 50% 50%;
+    }
+  }
+
+  .center-echart {
+    width: 100%;
+    height: 32%;
+    padding: 10px;
+    margin-bottom: 20px;
+    box-sizing: border-box;
+    background: url('../../../../../assets/images/fire/bj1.png') no-repeat center;
+    background-size: 100% 100%;
+
+    .nav-title {
+      height: 30px;
+      display: flex;
+      justify-content: space-between;
+      align-items: center;
+
+      .title {
+        font-family: 'douyuFont';
+        font-size: 14px;
+        color: #fff;
+        // color: #3df6ff;
       }
     }
 
-    .bot-content {
-      position: relative;
+    .echart-box {
       width: 100%;
-      height: calc(53% - 40px);
-      padding: 10px 10px 0px 10px;
-      box-sizing: border-box;
-      background: url('../../../../../assets/images/fire/bj1.png') no-repeat center;
-      background-size: 100% 100%;
+      height: calc(100% - 30px);
+    }
+  }
 
-      .title {
-        height: 35px;
-        display: flex;
-        justify-content: space-between;
-        align-items: center;
-        margin-bottom: 10px;
+  .bot-content {
+    position: relative;
+    width: 100%;
+    height: calc(53% - 40px);
+    padding: 10px 10px 0px 10px;
+    box-sizing: border-box;
+    background: url('../../../../../assets/images/fire/bj1.png') no-repeat center;
+    background-size: 100% 100%;
 
-        .text {
-          // height: 30px;
-          // line-height: 30px;
-          font-family: 'douyuFont';
-          font-size: 14px;
-          color: #fff;
-        }
+    .title {
+      height: 35px;
+      display: flex;
+      justify-content: space-between;
+      align-items: center;
+      margin-bottom: 10px;
+
+      .text {
+        // height: 30px;
+        // line-height: 30px;
+        font-family: 'douyuFont';
+        font-size: 14px;
+        color: #fff;
       }
+    }
 
-      .content {
-        height: calc(100% - 45px);
+    .content {
+      height: calc(100% - 45px);
+      display: flex;
+      flex-direction: column;
+      justify-content: space-between;
+
+      .content-box {
+        width: 100%;
+        height: 29%;
         display: flex;
-        flex-direction: column;
         justify-content: space-between;
+        margin-top: 0px !important;
 
-        .content-box {
-          width: 100%;
-          height: 29%;
-          display: flex;
-          justify-content: space-between;
-          margin-top: 0px !important;
-
-          .box-item {
-            position: relative;
-            width: 16%;
-            height: 100%;
-            background: url('../../../../../assets/images/fire/14174.png') no-repeat center;
+        .box-item {
+          position: relative;
+          width: 16%;
+          height: 100%;
+          background: url('../../../../../assets/images/fire/14174.png') no-repeat center;
+          background-size: 100% 100%;
+          cursor: pointer;
+
+          .content-title {
+            position: absolute;
+            left: 50%;
+            top: 0;
+            transform: translate(-50%);
+            color: #fff;
+            font-size: 14px;
+          }
+
+          .content-item {
+            position: absolute;
+            width: 93%;
+            height: 27%;
+            display: flex;
+            align-items: center;
+            padding: 0px 10px;
+            box-sizing: border-box;
+            background: url('../../../../../assets/images/fire/contetn.png') no-repeat center;
             background-size: 100% 100%;
-            cursor: pointer;
+            color: #fff;
+            font-size: 14px;
 
-            .content-title {
-              position: absolute;
+            &:nth-child(2) {
               left: 50%;
-              top: 0;
+              top: 28%;
               transform: translate(-50%);
-              color: #fff;
-              font-size: 14px;
+              display: flex;
+              justify-content: space-between;
             }
 
-            .content-item {
-              position: absolute;
-              width: 93%;
-              height: 27%;
+            &:nth-child(3) {
+              left: 50%;
+              top: 62%;
+              transform: translate(-50%);
               display: flex;
-              align-items: center;
-              padding: 0px 10px;
-              box-sizing: border-box;
-              background: url('../../../../../assets/images/fire/contetn.png') no-repeat center;
-              background-size: 100% 100%;
-              color: #fff;
-              font-size: 14px;
-
-              &:nth-child(2) {
-                left: 50%;
-                top: 28%;
-                transform: translate(-50%);
-                display: flex;
-                justify-content: space-between;
-              }
-
-              &:nth-child(3) {
-                left: 50%;
-                top: 62%;
-                transform: translate(-50%);
-                display: flex;
-                justify-content: space-between;
-              }
-
-              .bolds {
-                font-family: 'douyuFont';
-                color: #3df6ff;
-                font-size: 12px;
-              }
+              justify-content: space-between;
+            }
+
+            .bolds {
+              font-family: 'douyuFont';
+              color: #3df6ff;
+              font-size: 12px;
             }
           }
         }
       }
+    }
 
-      .echart-box {
-        position: absolute;
-        left: 50%;
-        top: 50px;
-        transform: translate(-50%, 0);
-        width: 66%;
-        height: calc(100% - 50px);
-      }
+    .echart-box {
+      position: absolute;
+      left: 50%;
+      top: 50px;
+      transform: translate(-50%, 0);
+      width: 66%;
+      height: calc(100% - 50px);
     }
   }
+}
 
-  :deep(.zxm-select:not(.zxm-select-customize-input) .zxm-select-selector) {
-    border: 1px solid #3ad8ff77 !important;
-    background-color: #ffffff00 !important;
-  }
+:deep(.zxm-select:not(.zxm-select-customize-input) .zxm-select-selector) {
+  border: 1px solid #3ad8ff77 !important;
+  background-color: #ffffff00 !important;
+}
 
-  :deep(.zxm-select-selection-item) {
-    color: #fff !important;
-  }
+:deep(.zxm-select-selection-item) {
+  color: #fff !important;
+}
 
-  :deep(.zxm-select-arrow) {
-    color: #fff;
-  }
+:deep(.zxm-select-arrow) {
+  color: #fff;
+}
 </style>

+ 11 - 9
src/views/vent/monitorManager/alarmMonitor/warn/dustWarn.vue

@@ -233,16 +233,18 @@ function getSysWarnList(id, type) {
           return acr > cur ? acr : cur;
         });
         maxY.value = maxY.value.toString().indexOf('.') == -1 ? maxY.value.toString() : maxY.value.toString().substring(0, maxY.value.toString().indexOf('.'))
-        if (maxY.value.length < 2) {
+        if (maxY.value.length < 2 && Number(maxY.value) < 1) {
+          maxY.value = 1
+        } else if (maxY.value.length < 2 && Number(maxY.value) >= 1) {
           maxY.value = 10
         } else if (maxY.value.length < 3) {
-          maxY.value = (Number(maxY.value[0])+1) * 10
+          maxY.value = (Number(maxY.value[0]) + 1) * 10
         } else if (maxY.value.length < 4) {
-          maxY.value = (Number(maxY.value[0])+1) * 100
+          maxY.value = (Number(maxY.value[0]) + 1) * 100
         } else if (maxY.value.length < 5) {
-          maxY.value = (Number(maxY.value[0])+1) * 1000
+          maxY.value = (Number(maxY.value[0]) + 1) * 1000
         } else if (maxY.value.length < 6) {
-          maxY.value = (Number(maxY.value[0])+1) * 10000
+          maxY.value = (Number(maxY.value[0]) + 1) * 10000
         }
       } else {
         activeIndex.value = 0;
@@ -278,13 +280,13 @@ function getSysWarnList(id, type) {
         if (maxY.value.length < 2) {
           maxY.value = 10
         } else if (maxY.value.length < 3) {
-          maxY.value = (Number(maxY.value[0])+1) * 10
+          maxY.value = (Number(maxY.value[0]) + 1) * 10
         } else if (maxY.value.length < 4) {
-          maxY.value = (Number(maxY.value[0])+1) * 100
+          maxY.value = (Number(maxY.value[0]) + 1) * 100
         } else if (maxY.value.length < 5) {
-          maxY.value = (Number(maxY.value[0])+1) * 1000
+          maxY.value = (Number(maxY.value[0]) + 1) * 1000
         } else if (maxY.value.length < 6) {
-          maxY.value = (Number(maxY.value[0])+1) * 10000
+          maxY.value = (Number(maxY.value[0]) + 1) * 10000
         }
       }
     }

+ 14 - 12
src/views/vent/monitorManager/alarmMonitor/warn/ventilateWarn.vue

@@ -184,19 +184,21 @@ function getSysWarnList(id, type) {
         return acr1 > cur1 ? acr1 : cur1;
       });
       maxY.value = max1 >= max2 ? max1 : max2;
-      console.log(maxY.value,'000')
+      console.log(maxY.value, '000')
       maxY.value = maxY.value.toString().indexOf('.') == -1 ? maxY.value.toString() : maxY.value.toString().substring(0, maxY.value.toString().indexOf('.'))
-        if (maxY.value.length < 2) {
-          maxY.value = 10
-        } else if (maxY.value.length < 3) {
-          maxY.value = (Number(maxY.value[0])+1) * 10
-        } else if (maxY.value.length < 4) {
-          maxY.value = (Number(maxY.value[0])+1) * 100
-        } else if (maxY.value.length < 5) {
-          maxY.value = (Number(maxY.value[0])+1) * 1000
-        } else if (maxY.value.length < 6) {
-          maxY.value = (Number(maxY.value[0])+1) * 10000
-        }
+      if (maxY.value.length < 2 && Number(maxY.value) < 1) {
+        maxY.value = 1
+      } else if (maxY.value.length < 2 && Number(maxY.value) >= 1) {
+        maxY.value = 10
+      } else if (maxY.value.length < 3) {
+        maxY.value = (Number(maxY.value[0]) + 1) * 10
+      } else if (maxY.value.length < 4) {
+        maxY.value = (Number(maxY.value[0]) + 1) * 100
+      } else if (maxY.value.length < 5) {
+        maxY.value = (Number(maxY.value[0]) + 1) * 1000
+      } else if (maxY.value.length < 6) {
+        maxY.value = (Number(maxY.value[0]) + 1) * 10000
+      }
     }
   });
 }