|
@@ -3394,6 +3394,44 @@
|
|
|
</div>
|
|
|
</div> -->
|
|
|
</div>
|
|
|
+ <div
|
|
|
+ class="tool"
|
|
|
+ :class="{
|
|
|
+ isToolChoose:
|
|
|
+ itemTool.tool.indexOf(71) != -1,
|
|
|
+ }"
|
|
|
+ @click="
|
|
|
+ addTools(71, itemTaskIndex, toolIndex)
|
|
|
+ "
|
|
|
+ >
|
|
|
+ <div
|
|
|
+ class="whiteBIcon"
|
|
|
+ @click.stop="
|
|
|
+ addTools(71, itemTaskIndex, toolIndex)
|
|
|
+ "
|
|
|
+ >
|
|
|
+ <img
|
|
|
+ src="../../../assets/icon/fourthToolList/chatgpt.png"
|
|
|
+ alt
|
|
|
+ />
|
|
|
+ <div style="margin: 5px 0">AI智能体</div>
|
|
|
+ </div>
|
|
|
+ <div class="noCTool">
|
|
|
+ <img
|
|
|
+ src="../../../assets/icon/new/isToolC.png"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ <div
|
|
|
+ class="isCTool"
|
|
|
+ v-if="itemTool.tool.indexOf(71) != -1"
|
|
|
+ >
|
|
|
+ <img
|
|
|
+ src="../../../assets/icon/new/isToolC.png"
|
|
|
+ alt=""
|
|
|
+ />
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div
|
|
|
class="toolSort"
|
|
@@ -13325,7 +13363,10 @@ export default {
|
|
|
} else {
|
|
|
this.unitJson[stageIndex].chapterInfo[0].taskJson[i].toolOpen = true;
|
|
|
}
|
|
|
- this.updateWork3(stageIndex);
|
|
|
+ if(this.this.cid){
|
|
|
+ this.updateWork3(stageIndex);
|
|
|
+
|
|
|
+ }
|
|
|
this.$forceUpdate();
|
|
|
},
|
|
|
goToTask2(i, stage) {
|