|
@@ -935,7 +935,7 @@ export default {
|
|
|
|
|
|
{
|
|
|
this.autoPlanResultInterval = setInterval(() => {
|
|
|
- debugger
|
|
|
+ // debugger
|
|
|
let autoCurrentTaskData = window.localStorage.getItem("autoCurrentTaskData");
|
|
|
autoCurrentTaskData = JSON.parse(autoCurrentTaskData);
|
|
|
if (autoCurrentTaskData) {
|
|
@@ -2291,7 +2291,7 @@ export default {
|
|
|
}
|
|
|
console.log("benchId", benchId);
|
|
|
let selectedBench = this.benchList.find((i) => i.benchId == benchId);
|
|
|
- console.log("selectedBench", selectedBench);
|
|
|
+ // console.log("selectedBench", selectedBench);
|
|
|
bus.emit("benchInfoVisible", selectedBench);
|
|
|
this.$nextTick(() => {
|
|
|
if (benchId == this.currentBench.benchId) {
|
|
@@ -2348,7 +2348,8 @@ export default {
|
|
|
this.currentBench.selected = true;
|
|
|
}
|
|
|
}
|
|
|
- bus.emit("benchInfoVisible", this.currentBench);
|
|
|
+ // console.log('this.currentBench', this.currentBench);
|
|
|
+ // bus.emit("benchInfoVisible", this.currentBench);
|
|
|
});
|
|
|
},
|
|
|
handleBenchClick(benchId, showRemoteButton) {
|