1
huanghongfeng
13 小时以前 9c3ee278c31a79e2e36b635651cef0b2dd431260
´úÂë¹ÜÀí/WCS/WCS/WIDESEAWCS_Client/src/extension/taskinfo/extend/taskExecuteDetail.vue
@@ -3,7 +3,7 @@
    <vol-box
      v-model="showDetialBox"
      :lazy="true"
      width="1200px"
      width="1400px"
      :padding="15"
      title="任务详情"
    >
@@ -81,21 +81,26 @@
            <el-table-column type="index" width="50"> </el-table-column>
            <el-table-column prop="taskNum" label="任务号" width="90">
            </el-table-column>
            <el-table-column prop="taskState" label="任务状态" width="90">
            <!-- <el-table-column prop="taskState" label="任务状态" width="90">
            </el-table-column> -->
            <el-table-column prop="taskStateremark" label="下一执行状态" width="90">
            </el-table-column>
            <el-table-column prop="currentAddress" label="当前位置" width="90">
            <el-table-column prop="rgvTaskTyperemark" label="RGV下一执行状态" width="90">
            </el-table-column>
            <el-table-column prop="nextAddress" label="下一位置" width="90">
            <el-table-column prop="currentAddress" label="当前执行点" width="90">
            </el-table-column>
            <el-table-column prop="nextAddress" label="下一执行点" width="90">
            </el-table-column>
            <el-table-column prop="isManual" label="是否人工操作" width="120">
            </el-table-column>
            <el-table-column prop="isNormal" label="是否正常" width="90">
            </el-table-column>
            <el-table-column prop="description" label="描述"> </el-table-column>
            <el-table-column prop="createDate" label="创建时间" width="180">
            </el-table-column>
            <el-table-column prop="remark" label="备注" width="180">
            </el-table-column>
            <el-table-column prop="description" label="描述"> </el-table-column>
            <!-- <el-table-column prop="remark" label="备注" width="180">
            </el-table-column> -->
          </el-table>
        </div>
      </div>
@@ -131,7 +136,7 @@
      } else {
        this.getDetailDatas();
      }
      this.$emit("parentCall", ($vue) => {
        var previousButton = $vue.buttons.find((x) => x.value == "Previous");
        this.previousShow = previousButton != null;
@@ -151,6 +156,10 @@
          if (!x.status) return this.$message.error(x.message);
          this.steps = x.data.list;
          this.active = x.data.active;
          this.row.taskState=this.steps[this.active-1].title;
          this.row.currentAddress=x.data.curradd;
          this.row.nextAddress=x.data.nextadd;
        });
    },
    getDetailDatas() {
@@ -163,6 +172,7 @@
        .then((x) => {
          if (!x.status) return this.$message.error(x.message);
          this.tableData = x.data;
        });
    },
    previous() {