*
lsh
2025-04-08 a451e2d9e1abcae3286dfcfec4103aad1ee64085
src/main/webapp/views/commandManage/commandManage.html
@@ -63,7 +63,7 @@
                  </el-table-column>
                  <el-table-column show-overflow-tooltip property="durationTime" label="持续时长">
                  </el-table-column>
                  <el-table-column property="commandType" label="指令类型">
                  <el-table-column property="commandType$" label="指令类型">
                  </el-table-column>
                  <el-table-column property="device" label="设备">
                  </el-table-column>
@@ -178,6 +178,22 @@
                  }
                  this.getTableData()
               },
               exportTable() {
                  this.tableSearchParam = {
                     task_no: null,
                     status: null,
                     wrk_no: null
                  }
                  this.executeExportTable()
               },
               exportTableAll() {
                  this.tableSearchParam = {
                     task_no: null,
                     status: null,
                     wrk_no: null
                  }
                  this.executeExportTableAll()
               },
               tableRowClassName({row, rowIndex}) {
                  if (rowIndex === this.commandStep) {
                     return 'success-row';
@@ -196,7 +212,7 @@
                        break;
                     case "completeCommand":
                        //完成指令
                        this.completeWrk(row)
                        this.completeCommand(row)
                        break;
                  }
               },