|
@@ -1742,9 +1742,7 @@
|
|
|
<div class="tool">
|
|
|
<div
|
|
|
class="whiteBIcon"
|
|
|
- @click="
|
|
|
- addTools(57, itemTaskIndex, toolIndex)
|
|
|
- "
|
|
|
+ @click="openTools(itemTaskIndex, 57, toolIndex)"
|
|
|
>
|
|
|
<img
|
|
|
src="../../../assets/icon/fourthToolList/cocopi.png"
|
|
@@ -4187,7 +4185,7 @@
|
|
|
<div class="tool">
|
|
|
<div
|
|
|
class="whiteBIcon"
|
|
|
- @click="addTools(57, itemTaskIndex, toolIndex)"
|
|
|
+ @click="openTools(itemTaskIndex, 57, toolIndex)"
|
|
|
>
|
|
|
<img
|
|
|
src="../../../assets/icon/fourthToolList/cocopi.png"
|
|
@@ -9540,6 +9538,17 @@ export default {
|
|
|
},
|
|
|
"*"
|
|
|
);
|
|
|
+ } else if (i == 57) {
|
|
|
+ window.parent.postMessage(
|
|
|
+ {
|
|
|
+ tools: "57y",
|
|
|
+ cid: this.cid,
|
|
|
+ stage: this.unitIndex,
|
|
|
+ task: itemTaskIndex,
|
|
|
+ tool: toolIndex,
|
|
|
+ },
|
|
|
+ "*"
|
|
|
+ );
|
|
|
}
|
|
|
},
|
|
|
chapAddTools(i) {
|