Bläddra i källkod

温度矩阵导出颜色

xushili 1 år sedan
förälder
incheckning
3366f9d96a
1 ändrade filer med 315 tillägg och 255 borttagningar
  1. 315 255
      src/components/temperatureMatrix.vue

+ 315 - 255
src/components/temperatureMatrix.vue

@@ -1,11 +1,11 @@
 <template>
   <el-dialog
-    width="70%"
-    @open="opened"
-    @closed="closed"
-    :fullscreen="true"
-    :show-close="true"
-    class="dialogs"
+      width="70%"
+      @open="opened"
+      @closed="closed"
+      :fullscreen="true"
+      :show-close="true"
+      class="dialogs"
   >
     <template #title>
       <div class="showTitles currentShowTitles">
@@ -15,46 +15,49 @@
     <div class="body" @contextmenu="contextmenu">
       <div class="title">
         <div
-          :class="current === item.id ? 'title-onItem' : 'title-item'"
-          v-for="(item, index) in stationList"
-          :key="index"
-          @click="handleChange(item.id,item.name)"
+            :class="current === item.id ? 'title-onItem' : 'title-item'"
+            v-for="(item, index) in stationList"
+            :key="index"
+            @click="handleChange(item.id,item.name)"
         >
           {{ item.name }}
         </div>
         <div class="select">
           <el-checkbox
-            style="margin-right: 20px"
-            :indeterminate="isIndeterminate"
-            v-model="checkAll"
-            @change="handleCheckChange"
-            >全选</el-checkbox
+              style="margin-right: 20px"
+              :indeterminate="isIndeterminate"
+              v-model="checkAll"
+              @change="handleCheckChange"
+          >全选
+          </el-checkbox
           >
           <el-checkbox-group
-            v-model="checkedCities"
-            @change="handleCheckedCitiesChange"
+              v-model="checkedCities"
+              @change="handleCheckedCitiesChange"
           >
             <el-checkbox v-for="item in checkboxs" :label="item" :key="item">{{
-              item
-            }}</el-checkbox>
+                item
+              }}
+            </el-checkbox>
           </el-checkbox-group>
           <div class="bpickers">
-             <!-- <div class="search"> -->
-          <div class="date">日期:</div>
-          <el-date-picker
-            class="pickers"
-            @change="changes"
-            v-model="timeValue"
-            type="datetimerange"
-            range-separator="至"
-            start-placeholder="开始日期"
-            end-placeholder="结束日期"
-          >
-          </el-date-picker>
-        <!-- </div> -->
+            <!-- <div class="search"> -->
+            <div class="date">日期:</div>
+            <el-date-picker
+                class="pickers"
+                @change="changes"
+                v-model="timeValue"
+                type="datetimerange"
+                range-separator="至"
+                start-placeholder="开始日期"
+                end-placeholder="结束日期"
+            >
+            </el-date-picker>
+            <!-- </div> -->
             <div>
               <el-button type="info" size="small" @click="exportExcel()"
-                >导出</el-button
+              >导出
+              </el-button
               >
             </div>
           </div>
@@ -62,21 +65,21 @@
       </div>
       <div class="tables">
         <el-table
-          id="tableId"
-          ref="multipleTable"
-          :data="tableData"
-          class="table"
-          style="width: 100%"
-          height="83vh"
-          stripe
-          :header-cell-style="{
+            id="tableId"
+            ref="multipleTable"
+            :data="tableData"
+            class="table"
+            style="width: 100%"
+            height="83vh"
+            stripe
+            :header-cell-style="{
             background: 'rgb(30,30,30)',
             color: 'rgb(220,220,220)',
             padding: '4px',
             fontSize: '14px',
             border: 'solid 0.5px #000000',
           }"
-          :cell-style="{
+            :cell-style="{
             height: '40px',
             background: 'rgb(30,30,30)',
             color: 'rgb(220,220,220)',
@@ -86,10 +89,10 @@
             'border-bottom': '1px solid #000000',
             'border-right': '1px solid #000000',
           }"
-          @cell-click="handleCellClick"
-          @selection-change="handleSelectionChange"
+            @cell-click="handleCellClick"
+            @selection-change="handleSelectionChange"
         >
-          <el-table-column type="selection" width="50"> </el-table-column>
+          <el-table-column type="selection" width="50"></el-table-column>
           <el-table-column prop="code" label="风机" width="90" align="center">
           </el-table-column>
           <el-table-column label="状态" width="60" align="center">
@@ -100,38 +103,38 @@
             </template>
           </el-table-column>
           <el-table-column
-            prop="windSpeed"
-            width="50"
-            label="风速"
-            align="center"
+              prop="windSpeed"
+              width="50"
+              label="风速"
+              align="center"
           >
           </el-table-column>
           <el-table-column prop="power" width="60" label="功率" align="center">
           </el-table-column>
           <el-table-column
-            prop="rollSpeed"
-            width="70"
-            label="发电机转速"
-            align="center"
+              prop="rollSpeed"
+              width="70"
+              label="发电机转速"
+              align="center"
           >
           </el-table-column>
           <el-table-column
-            v-for="(item, index) in contentList"
-            :key="index"
-            :label="item.name"
-            align="center"
-          >
-            <el-table-column
-              v-for="(res, index) in item.children"
+              v-for="(item, index) in contentList"
               :key="index"
-              :label="res.name"
-              width="61"
+              :label="item.name"
               align="center"
+          >
+            <el-table-column
+                v-for="(res, index) in item.children"
+                :key="index"
+                :label="res.name"
+                width="61"
+                align="center"
             >
               <template #default="scope">
                 <span
-                  :id="scope.row.id === tableData.length - 3 ? 'lastTable' : ''"
-                  :class="
+                    :id="scope.row.id === tableData.length - 3 ? 'lastTable' : ''"
+                    :class="
                     scope.row[`${res.keyname}Status`] === 'OverLimit'
                       ? 'overModle'
                       : scope.row[`${res.keyname}Status`] === 'CrossingLimit'
@@ -155,14 +158,15 @@
 <script>
 import api from "api/index";
 import BackgroundData from "utils/BackgroundData";
-import XLSX from "xlsx";
+import XLSX from "xlsx-js-style";
+import dayjs from "dayjs";
+
 // import XLSXStyle from 'xlsx-style';
-import { saveAs } from 'file-saver'
 const cityOptions = ["越限", "超限", "坏点"];
 export default {
   data() {
     return {
-       timeValue: [],
+      timeValue: [],
       windturbineStatus: [
         {
           type: 0,
@@ -198,9 +202,9 @@ export default {
         },
       ],
       contentList: [],
-      hanb:"",
+      hanb: "",
       tableData: [],
-      totablejs:[],
+      totablejs: [],
       stationList: [],
       current: "",
       intervals: null,
@@ -250,7 +254,8 @@ export default {
       pagenum: 1,
     };
   },
-  mounted() {},
+  mounted() {
+  },
   methods: {
     cheshi() {
       const lastTable = document.getElementById("lastTable").getClientRects();
@@ -272,14 +277,14 @@ export default {
       let checkedCount = value.length;
       this.checkAll = checkedCount === this.checkboxs.length;
       this.isIndeterminate =
-        checkedCount > 0 && checkedCount < this.checkboxs.length;
+          checkedCount > 0 && checkedCount < this.checkboxs.length;
       this.multipleSelection = [];
       this.tableData = [];
       this.pagenum = 1;
       this.getData();
     },
     opened() {
-       let date = new Date();
+      let date = new Date();
       this.timeValue[0] = new Date(new Date().toLocaleDateString()).getTime() - 86400000;
       this.timeValue[1] = new Date(new Date().toLocaleDateString()).getTime();
 
@@ -297,7 +302,7 @@ export default {
         });
       });
       let stationList = [];
-      console.log('61',stationList);
+      console.log('61', stationList);
       let stations = this.$store.state.stationList;
       stations.forEach((item) => {
         if (item.id.indexOf("FDC") != -1) {
@@ -314,9 +319,9 @@ export default {
       clearInterval(this.intervals);
       this.intervals = null;
     },
-    handleChange(val,nb) {
+    handleChange(val, nb) {
       this.current = val;
-      this.hanb=nb
+      this.hanb = nb
       this.tableData = [];
       this.pagenum = 1;
       this.getData();
@@ -345,152 +350,147 @@ export default {
       }
       selectStatus = statusArr.join(",");
       api
-        .temperatureInfo({
-          id:
-            this.current === "all"
-              ? ""
-              : this.stationList.filter((item) => item.id === this.current)[0]
-                  .id,
-          status: selectStatus,
-          pagenum: this.pagenum,
-          pagesize: 200,
-        })
-        .then((res) => {
-          if (res.data.length) {
-            let contentList = [];
-            let tableDatas = [];
-            // console.log(contentList);
-            // console.log(tableDatas);
-            res.data.forEach((item, index) => {
-              let tableData = {};
-              tableData.code = item.code;
-               tableData.windturbineId= item.windturbineId;
-
-              tableData.windSpeed = item.windSpeed.toFixed(1);
-              tableData.status = Number(item.status);
-              tableData.stationId = item.stationId;
-              tableData.rollSpeed = item.rollSpeed.toFixed(1);
-              tableData.power = item.power.toFixed(1);
-              item.temperatureComponentInfos.forEach((val) => {
-                if (index === 0) {
-                  let obj = {
-                    children: [],
-                  };
-                  obj.name = val.name;
-                  val.temperatureItemInfos.forEach((temp) => {
-                    if (index === 0) {
-                      let str = {};
-                      str.name = temp.name;
-                      str.keyname = `${val.name}${temp.name}`;
-                      obj.children.push(str);
-                    }
-                    tableData[`${val.name}${temp.name}`] =
-                      temp.value.toFixed(1);
-                    tableData[`${val.name}${temp.name}Status`] = temp.status;
-                  });
-                  contentList.push(obj);
-                } else {
-                  val.temperatureItemInfos.forEach((temp) => {
-                    tableData[`${val.name}${temp.name}`] =
-                      temp.value.toFixed(1);
-                    tableData[`${val.name}${temp.name}Status`] = temp.status;
-                  });
-                }
-              });
-              tableDatas.push(tableData);
-              // console.log('ha',tableData);
-            });
-            this.contentList = contentList;
-            let arr = [];
-            this.contentList.forEach((item) => {
-              item.children.forEach((val) => {
-                arr.push(val.name);
-              });
-            });
-            if (tableDatas.length) {
-              this.tableData = [...this.tableData, ...tableDatas];
+          .temperatureInfo({
+            id:
+                this.current === "all"
+                    ? ""
+                    : this.stationList.filter((item) => item.id === this.current)[0]
+                        .id,
+            status: selectStatus,
+            pagenum: this.pagenum,
+            pagesize: 200,
+          })
+          .then((res) => {
+            if (res.data.length) {
+              let contentList = [];
+              let tableDatas = [];
+              // console.log(contentList);
+              // console.log(tableDatas);
+              res.data.forEach((item, index) => {
+                let tableData = {};
+                tableData.code = item.code;
+                tableData.windturbineId = item.windturbineId;
 
-              this.tableData.forEach((item, index) => {
-                item.id = index;
+                tableData.windSpeed = item.windSpeed.toFixed(1);
+                tableData.status = Number(item.status);
+                tableData.stationId = item.stationId;
+                tableData.rollSpeed = item.rollSpeed.toFixed(1);
+                tableData.power = item.power.toFixed(1);
+                item.temperatureComponentInfos.forEach((val) => {
+                  if (index === 0) {
+                    let obj = {
+                      children: [],
+                    };
+                    obj.name = val.name;
+                    val.temperatureItemInfos.forEach((temp) => {
+                      if (index === 0) {
+                        let str = {};
+                        str.name = temp.name;
+                        str.keyname = `${val.name}${temp.name}`;
+                        obj.children.push(str);
+                      }
+                      tableData[`${val.name}${temp.name}`] =
+                          temp.value.toFixed(1);
+                      tableData[`${val.name}${temp.name}Status`] = temp.status;
+                    });
+                    contentList.push(obj);
+                  } else {
+                    val.temperatureItemInfos.forEach((temp) => {
+                      tableData[`${val.name}${temp.name}`] =
+                          temp.value.toFixed(1);
+                      tableData[`${val.name}${temp.name}Status`] = temp.status;
+                    });
+                  }
+                });
+                tableDatas.push(tableData);
+                // console.log('ha',tableData);
               });
-            }
+              this.contentList = contentList;
+              let arr = [];
+              this.contentList.forEach((item) => {
+                item.children.forEach((val) => {
+                  arr.push(val.name);
+                });
+              });
+              if (tableDatas.length) {
+                this.tableData = [...this.tableData, ...tableDatas];
 
-            this.multipleSelection.forEach((item) => {
-              if (item) {
-                let tables = this.tableData.filter(
-                  (val) => val.code === item.code
-                )[0];
-                this.$nextTick(() => {
-                  this.$refs.multipleTable.toggleRowSelection(tables, true);
+                this.tableData.forEach((item, index) => {
+                  item.id = index;
                 });
               }
-            });
-          }
-        });
+
+              this.multipleSelection.forEach((item) => {
+                if (item) {
+                  let tables = this.tableData.filter(
+                      (val) => val.code === item.code
+                  )[0];
+                  this.$nextTick(() => {
+                    this.$refs.multipleTable.toggleRowSelection(tables, true);
+                  });
+                }
+              });
+            }
+          });
     },
 
-    exportExcel() {
-      let fjcode=[]
+    async exportExcel() {
+      let fjcode = []
       // console.log('sb',this.tableData);
-      this.tableData.forEach((ele)=>{
-          fjcode.push(ele.windturbineId) 
+      this.tableData.forEach((ele) => {
+        fjcode.push(ele.windturbineId)
       })
       let str = fjcode.join(',');
-      console.log('nb',str);
-      console.log('nb',this.timeValue[0]);
-      console.log('nb',this.timeValue[1]);
-      const stTs = this.timeValue[0];
-      const endTs = this.timeValue[1];
-     api.getnb({
-          windturbineIds:str,
-          startTs: this.timeValue[0],
-          endTs: this.timeValue[1],
-        }) .then((res) => {
+      await api.getnb({
+        windturbineIds: str,
+        startTs: dayjs(this.timeValue[0]).valueOf(),
+        endTs: dayjs(this.timeValue[1]).valueOf(),
+      }).then((res) => {
 //  if (res.data.length) {
-            let contentList = [];
-            let tableDatas = [];
-            res.data.forEach((item, index) => {
-              let tablejs = {};
-              tablejs.code = item.code;
-              tablejs.windturbineId = item.windturbineId;
-              tablejs.windSpeed = item.windSpeed.toFixed(1);
-              tablejs.status = Number(item.status);
-              tablejs.stationId = item.stationId;
-              tablejs.rollSpeed = item.rollSpeed.toFixed(1);
-              tablejs.power = item.power.toFixed(1);
-              item.temperatureComponentInfos.forEach((val) => {
+        let contentList = [];
+        let tableDatas = [];
+        res.data.forEach((item, index) => {
+          let tablejs = {};
+          tablejs.code = item.code;
+          tablejs.windturbineId = item.windturbineId;
+          tablejs.windSpeed = item.windSpeed.toFixed(1);
+          tablejs.status = Number(item.status);
+          tablejs.stationId = item.stationId;
+          tablejs.rollSpeed = item.rollSpeed.toFixed(1);
+          tablejs.power = item.power.toFixed(1);
+          item.temperatureComponentInfos.forEach((val) => {
+            if (index === 0) {
+              let obj = {
+                children: [],
+              };
+              obj.name = val.name;
+              val.temperatureItemInfos.forEach((temp) => {
                 if (index === 0) {
-                  let obj = {
-                    children: [],
-                  };
-                  obj.name = val.name;
-                  val.temperatureItemInfos.forEach((temp) => {
-                    if (index === 0) {
-                      let str = {};
-                      str.name = temp.name;
-                      str.keyname = `${val.name}${temp.name}`;
-                      obj.children.push(str);
-                    }
-                    tablejs[`${val.name}${temp.name}`] =
-                      temp.value.toFixed(1);
-                    tablejs[`${val.name}${temp.name}Status`] = temp.status;
-                  });
-                  contentList.push(obj);
-                } else {
-                  val.temperatureItemInfos.forEach((temp) => {
-                    tablejs[`${val.name}${temp.name}`] =
-                      temp.value.toFixed(1);
-                    tablejs[`${val.name}${temp.name}Status`] = temp.status;
-                  });
+                  let str = {};
+                  str.name = temp.name;
+                  str.keyname = `${val.name}${temp.name}`;
+                  obj.children.push(str);
                 }
+                tablejs[`${val.name}${temp.name}`] =
+                    temp.value.toFixed(1);
+                tablejs[`${val.name}${temp.name}Status`] = temp.status;
               });
-              tableDatas.push(tablejs);
-              this.totablejs.push(tablejs)
-             
-            });
-            
-        })
-         const headers   = [   
+              contentList.push(obj);
+            } else {
+              val.temperatureItemInfos.forEach((temp) => {
+                tablejs[`${val.name}${temp.name}`] =
+                    temp.value.toFixed(1);
+                tablejs[`${val.name}${temp.name}Status`] = temp.status;
+              });
+            }
+          });
+          tableDatas.push(tablejs);
+          this.totablejs.push(tablejs)
+
+        });
+
+      })
+      const headers = [
         "时间",
         "机组编号",
         "状态",
@@ -522,10 +522,9 @@ export default {
         "齿轮箱轴1温度",
         "齿轮箱轴2温度",
       ];
-      console.log('686',this.totablejs);
       let data = this.totablejs.map((item) => [
         item.code,
-         item.windturbineId,
+        item.windturbineId,
         item.status,
         item.windSpeed,
         item.power,
@@ -543,7 +542,6 @@ export default {
         item.发电机V2绕组温度,
         item.发电机W1绕组温度,
         item.发电机W2绕组温度,
-        item.发电机W2绕组温度,
         item.发电机轴a温度,
         item.发电机轴b温度,
         item.变桨电池柜1温度,
@@ -556,6 +554,32 @@ export default {
         item.齿轮箱轴1温度,
         item.齿轮箱轴2温度,
       ]);
+      let dataStatus = this.totablejs.map((item) => [
+        item.主轴叶轮侧温度Status,
+        item.主轴齿轮箱侧温度Status,
+        item.其他塔底柜温度Status,
+        item.其他机舱柜温度Status,
+        item.其他机舱温度Status,
+        item.其他滑环温度Status,
+        item.其他环境温度Status,
+        item.发电机U1绕组温度Status,
+        item.发电机U2绕组温度Status,
+        item.发电机V1绕组温度Status,
+        item.发电机V2绕组温度Status,
+        item.发电机W1绕组温度Status,
+        item.发电机W2绕组温度Status,
+        item.发电机轴a温度Status,
+        item.发电机轴b温度Status,
+        item.变桨电池柜1温度Status,
+        item.变桨电池柜2温度Status,
+        item.变桨电池柜3温度Status,
+        item.液压压力Status,
+        item.液压油温Status,
+        item.齿轮箱入口油温Status,
+        item.齿轮箱油温Status,
+        item.齿轮箱轴1温度Status,
+        item.齿轮箱轴2温度Status,
+      ]);
 
       data.forEach((ele) => {
         if (ele[2] == 0) {
@@ -571,41 +595,58 @@ export default {
         } else if (ele[2] == 5) {
           ele[2] = '故障';
         } else if (ele[2] == 6) {
-          ele[2]= '维护';
+          ele[2] = '维护';
         } else if (ele[2] == 7) {
           ele[2] = '离线';
         }
       });
-      console.log("66 ", data);
 
-      const worksheet = XLSX.utils.aoa_to_sheet([headers, ...data]);
+      const colors = {
+        'BadPoint': {fill: {fgColor: {rgb: 'C4C4C4'}}},
+        'OverLimit': {fill: {fgColor: {rgb: 'BB3439'}}},
+        'CrossingLimit': {fill: {fgColor: {rgb: 'E0871C'}}},
+        'Normal': {}
+      };
+
+      const worksheet = XLSX.utils.aoa_to_sheet([headers, ...data])
       const workbook = XLSX.utils.book_new();
+
+      // 设置单元格的颜色
+      for (let row = 0; row < dataStatus.length; row++) {
+        let kr = dataStatus[row]
+        for (let i = 0; i < kr.length; i++) {
+          const status = kr[i];
+          let rn = this.getExcelColumn(i+7)+`${row + 2}`
+          worksheet[rn].s = colors[status]; // 设置颜色
+        }
+      }
+      worksheet['!cols'] = [{ wpx: 18 * 7.5 }];
+
       XLSX.utils.book_append_sheet(workbook, worksheet, "Sheet1");
       // XLSX.writeFile(workbook, `${this.hanb}温度矩阵.xlsx`);
-       const excelBuffer = XLSX.write(workbook, { bookType: 'xlsx', type: 'array' })
-       this.saveAsExcelFile(excelBuffer, `${this.hanb}温度矩阵`)
+      const excelBuffer = XLSX.write(workbook, {bookType: 'xlsx', type: 'array'})
+      this.saveAsExcelFile(excelBuffer, `${this.hanb}温度矩阵`)
       // this.saveAsExcelFile()
     },
 
-   saveAsExcelFile(buffer, fileName) {
-  const data = new Blob([buffer], { type: 'application/octet-stream' })
-   if (typeof window.navigator.msSaveBlob !== 'undefined') {
-    // IE10+
-    window.navigator.msSaveBlob(data, fileName + '.xlsx')
-  } else {
-    // Others
-    const url = window.URL.createObjectURL(data)
-    const link = document.createElement('a')
-    link.href = url
-    link.setAttribute('download', fileName + '.xlsx')
-    document.body.appendChild(link)
-    link.click()
-    document.body.removeChild(link)
-  }
+    saveAsExcelFile(buffer, fileName) {
+      const data = new Blob([buffer], {type: 'application/octet-stream'})
+      if (typeof window.navigator.msSaveBlob !== 'undefined') {
+        // IE10+
+        window.navigator.msSaveBlob(data, fileName + '.xlsx')
+      } else {
+        // Others
+        const url = window.URL.createObjectURL(data)
+        const link = document.createElement('a')
+        link.href = url
+        link.setAttribute('download', fileName + '.xlsx')
+        document.body.appendChild(link)
+        link.click()
+        document.body.removeChild(link)
+      }
+
 
-     
-  
-},
+    },
     /* 右键菜单 */
     contextmenu() {
       const remote = require("electron").remote;
@@ -615,31 +656,31 @@ export default {
         {
           label: "启动",
           click() {
-            that.sendCommand({ controlType: "1", deviceType: "Manual" });
+            that.sendCommand({controlType: "1", deviceType: "Manual"});
           },
         },
         {
           label: "停机",
           click() {
-            that.sendCommand({ controlType: "2", deviceType: "Manual" });
+            that.sendCommand({controlType: "2", deviceType: "Manual"});
           },
         },
         {
           label: "复位",
           click() {
-            that.sendCommand({ controlType: "5", deviceType: "Manual" });
+            that.sendCommand({controlType: "5", deviceType: "Manual"});
           },
         },
         {
           label: "维护",
           click() {
-            that.sendCommand({ controlType: "6", deviceType: "Manual" });
+            that.sendCommand({controlType: "6", deviceType: "Manual"});
           },
         },
         {
           label: "取消维护",
           click() {
-            that.sendCommand({ controlType: "8", deviceType: "Manual" });
+            that.sendCommand({controlType: "8", deviceType: "Manual"});
           },
         },
         {
@@ -648,37 +689,37 @@ export default {
             {
               label: "检修",
               click() {
-                that.sendLock({ value: "CheckLock" });
+                that.sendLock({value: "CheckLock"});
               },
             },
             {
               label: "故障维修",
               click() {
-                that.sendLock({ value: "FaultLock" });
+                that.sendLock({value: "FaultLock"});
               },
             },
             {
               label: "场内受累检修",
               click() {
-                that.sendLock({ value: "StationCheckLock" });
+                that.sendLock({value: "StationCheckLock"});
               },
             },
             {
               label: "场内受累故障",
               click() {
-                that.sendLock({ value: "StationFaulLock" });
+                that.sendLock({value: "StationFaulLock"});
               },
             },
             {
               label: "场外受累电网",
               click() {
-                that.sendLock({ value: "StationPowerLineLock" });
+                that.sendLock({value: "StationPowerLineLock"});
               },
             },
             {
               label: "场外受累天气",
               click() {
-                that.sendLock({ value: "StationWeatherLock" });
+                that.sendLock({value: "StationWeatherLock"});
               },
             },
           ],
@@ -686,14 +727,15 @@ export default {
         {
           label: "取消挂牌",
           click() {
-            that.sendLock({ value: "UnLock" });
+            that.sendLock({value: "UnLock"});
           },
         },
       ];
       const menu = remote.Menu.buildFromTemplate(menuTemplate);
 
       menu.popup(remote.getCurrentWindow());
-    },
+    }
+    ,
 
     sendCommand(msg) {
       let sendList = [];
@@ -711,7 +753,7 @@ export default {
       }
       this.multipleSelection.forEach((item) => {
         sendList.push(
-          this.$store.state.windturbinelist[item.code.replace("-", "_")]
+            this.$store.state.windturbinelist[item.code.replace("-", "_")]
         );
       });
 
@@ -738,7 +780,8 @@ export default {
           }
         });
       }
-    },
+    }
+    ,
     sendLock(msg) {
       let bd = BackgroundData.getInstance();
       if (!bd.LoginUser) {
@@ -755,7 +798,7 @@ export default {
       let sendList = [];
       this.multipleSelection.forEach((item) => {
         sendList.push(
-          this.$store.state.windturbinelist[item.code.replace("-", "_")]
+            this.$store.state.windturbinelist[item.code.replace("-", "_")]
         );
       });
       if (sendList.length > 0) {
@@ -778,7 +821,8 @@ export default {
           }
         });
       }
-    },
+    }
+    ,
 
     /* 控制成功 */
     controlSuccess(msg) {
@@ -796,7 +840,7 @@ export default {
         if (val.errorCode > 0) {
           iserror = true;
           mss += `${val.windturbineId}  ${
-            this.controlErorCodes[val.errorCode]
+              this.controlErorCodes[val.errorCode]
           }\n`;
         }
       }
@@ -813,7 +857,8 @@ export default {
         offset: 60,
         duration: 3000,
       });
-    },
+    }
+    ,
 
     /* 控制失败 */
     controlError(err) {
@@ -825,10 +870,24 @@ export default {
         offset: 60,
         duration: 3000,
       });
-    },
+    }
+    ,
+    getExcelColumn(n) {
+      var ordA = 65;
+      var ordZ = 90;
+      var len = ordZ - ordA + 1;
+      var s = "";
+      while (n > 0) {
+        var rem = (n - 1) % len;
+        s = String.fromCharCode(rem + ordA) + s;
+        n = (n - rem - 1) / len;
+      }
+      return s;
+    }
   },
-  
-};
+
+}
+;
 </script>
 <style lang="less" scoped>
 .body {
@@ -928,6 +987,7 @@ export default {
   align-items: center;
   justify-content: center;
 }
+
 .bpickers {
   display: flex;
   flex-direction: row;