*
lsh
2025-11-03 255e7ef8d8d282305baa43e77115bfff1cfffccb
src/main/webapp/views/deviceOperate/devpOperate.html
@@ -59,14 +59,19 @@
                     <el-form-item label="">
                        <el-checkbox v-model="formParam.outEnable">可出</el-checkbox>
                     </el-form-item>
                     <el-form-item label="">
                        <el-checkbox v-model="formParam.hpMk">演示</el-checkbox>
                     </el-form-item>
                  </el-form>
                  <div>
                     <el-button @click="requestOperate('update')" type="primary">更新</el-button>
                     <el-button @click="requestOperate('update')" type="primary">更新站点信息</el-button>
<!--                     <el-button @click="requestOperate('in')" type="warning">放货完成</el-button>-->
                  </div>
                  <div style="margin-top: 10px">
                     <el-button @click="requestOperate('pakMk')" type="warning">入库标记复位</el-button>
                     <el-button @click="requestOperate('pakMkRun')" type="warning">退库标记复位</el-button>
                     <el-button @click="requestOperate('pakMkTask')" type="warning">小车任务下发标记复位</el-button>
                     <el-button @click="requestOperate('pakMkWalk')" type="warning">WMS任务下发标记复位</el-button>
<!--                     <el-button @click="requestOperate('in')" type="warning">放货完成</el-button>-->
                  </div>
               </div>
            </el-card>
@@ -87,15 +92,23 @@
                        <el-descriptions-item label="工作号">
                           {{ tableData[currentIndex].workNo }}
                        </el-descriptions-item>
                        <el-descriptions-item label="自动">{{ tableData[currentIndex].autoing }}
                        <el-descriptions-item label="自动">
                           <el-tag>{{ tableData[currentIndex].autoing }}</el-tag>
                        </el-descriptions-item>
                        <el-descriptions-item label="有物">{{ tableData[currentIndex].loading }}
                        <el-descriptions-item label="有物">
                           <el-tag>{{ tableData[currentIndex].loading }}</el-tag>
                        </el-descriptions-item>
                        <el-descriptions-item label="可入">{{ tableData[currentIndex].inEnable }}
                        <el-descriptions-item label="可入">
                           <el-tag>{{ tableData[currentIndex].inEnable }}</el-tag>
                        </el-descriptions-item>
                        <el-descriptions-item label="可出">{{ tableData[currentIndex].outEnable }}
                        <el-descriptions-item label="可出">
                           <el-tag>{{ tableData[currentIndex].outEnable }}</el-tag>
                        </el-descriptions-item>
                        <el-descriptions-item label="空板信号">{{ tableData[currentIndex].emptyMk }}
                        <el-descriptions-item label="演示">
                           <el-tag>{{ tableData[currentIndex].hpMk }}</el-tag>
                        </el-descriptions-item>
                        <el-descriptions-item label="空板信号">
                           <el-tag>{{ tableData[currentIndex].emptyMk }}</el-tag>
                        </el-descriptions-item>
                        <el-descriptions-item label="目标站">{{ tableData[currentIndex].staNo }}
                        </el-descriptions-item>
@@ -136,7 +149,8 @@
               staNo: null,
               pakMk: null,
               inEnable: false,
               outEnable: false
               outEnable: false,
               hpMk: false
            }
         },
         created() {
@@ -165,6 +179,7 @@
               this.formParam.pakMk = row.pakMk
               this.formParam.inEnable = row.inEnable == "Y" ? true : false
               this.formParam.outEnable = row.outEnable == "Y" ? true : false
               this.formParam.hpMk = row.hpMk == "Y" ? true : false
            },
            getTableData() {
               let that = this;