|
@@ -1,4 +1,5 @@
|
|
|
<template>
|
|
|
+<!-- 极简模式 -->
|
|
|
<div class="pb_content" style="overflow: unset">
|
|
|
<div
|
|
|
class="pb_content_body"
|
|
@@ -206,6 +207,7 @@
|
|
|
<div v-if="t.tool == 66">公式编辑</div>
|
|
|
<div v-if="t.tool == 67">分子结构</div>
|
|
|
<div v-if="t.tool == 68">时间轴</div>
|
|
|
+ <div v-if="t.tool == 69">英语写作</div>
|
|
|
<div v-if="t.tool == 25">目标管理</div>
|
|
|
<div v-if="t.tool == 26">课程设计</div>
|
|
|
<div v-if="t.tool == 62">交互视频</div>
|
|
@@ -1281,6 +1283,14 @@
|
|
|
/>
|
|
|
<div style="margin: 5px 0">时间轴</div>
|
|
|
</div>
|
|
|
+ <div v-if="tooC == 69">
|
|
|
+ <img
|
|
|
+ @click="addTools(tooC, toolIndex, taskCount)"
|
|
|
+ src="../../assets/icon/secondToolList/timeAxis.png"
|
|
|
+ alt
|
|
|
+ />
|
|
|
+ <div style="margin: 5px 0">英语写作</div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -8104,6 +8114,23 @@
|
|
|
<div v-else class="isChoose"></div>
|
|
|
</div>
|
|
|
</div>
|
|
|
+ <div
|
|
|
+ class="tool"
|
|
|
+ :class="{ isToolChoose: checktoolArray.indexOf(69) != -1 }"
|
|
|
+ @click="addTools2(69)"
|
|
|
+ >
|
|
|
+ <div class="whiteBIcon">
|
|
|
+ <img src="../../assets/icon/secondToolList/timeAxis.png" alt />
|
|
|
+ <div style="margin: 5px 0">英语写作</div>
|
|
|
+ </div>
|
|
|
+ <div class="check">
|
|
|
+ <div
|
|
|
+ v-if="checktoolArray.indexOf(69) == -1"
|
|
|
+ class="noChoose"
|
|
|
+ ></div>
|
|
|
+ <div v-else class="isChoose"></div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<div class="toolSort" v-if="toolType == 4">
|
|
|
<div
|
|
@@ -11054,6 +11081,22 @@
|
|
|
<el-button type="primary" @click="updateName">确 定</el-button>
|
|
|
</span>
|
|
|
</el-dialog>
|
|
|
+ <el-dialog
|
|
|
+ title="英语写作"
|
|
|
+ :visible.sync="engDialogVisible"
|
|
|
+ :append-to-body="true"
|
|
|
+ width="800px"
|
|
|
+ :before-close="handleClose"
|
|
|
+ class="dialog_diy"
|
|
|
+ >
|
|
|
+ <div>
|
|
|
+ 111
|
|
|
+ </div>
|
|
|
+ <span slot="footer" class="dialog-footer">
|
|
|
+ <el-button @click="engDialogVisible = false">取 消</el-button>
|
|
|
+ <el-button type="primary" @click="addEngLish">确 定</el-button>
|
|
|
+ </span>
|
|
|
+ </el-dialog>
|
|
|
<interVideo
|
|
|
:dialogVisibleVideo.sync="dialogVisibleVideo"
|
|
|
:videoJson="videoJson"
|
|
@@ -11375,6 +11418,7 @@ export default {
|
|
|
timeDialogVisible: false,
|
|
|
replyDialogVisible: false,
|
|
|
toolDialogVisible: false,
|
|
|
+ engDialogVisible: false,
|
|
|
replyIndex: 0,
|
|
|
replyPid: "",
|
|
|
radio: [],
|
|
@@ -11385,6 +11429,7 @@ export default {
|
|
|
askJson: [{ askstitle: "", askItem: 1, checkList: [] }],
|
|
|
},
|
|
|
testJson: {},
|
|
|
+ englishList: {},
|
|
|
checkJson: [],
|
|
|
askList: [],
|
|
|
answerList: [],
|
|
@@ -16847,6 +16892,13 @@ export default {
|
|
|
window.parent.postMessage({ tools: "61" }, "*");
|
|
|
} else if (t == 63) {
|
|
|
window.parent.postMessage({ tools: "63" }, "*");
|
|
|
+ } else if (t == 69) {
|
|
|
+ this.englishList = this.chapInfoList[this.courseType].chapterInfo[0]
|
|
|
+ .taskJson[index].toolChoose[i].englishList
|
|
|
+ ? this.chapInfoList[this.courseType].chapterInfo[0].taskJson[index]
|
|
|
+ .toolChoose[i].englishList
|
|
|
+ : {};
|
|
|
+ this.engDialogVisible = true;
|
|
|
} else if (t == 65) {
|
|
|
if (this.tType == 2) {
|
|
|
this.$message.error("不支持学生使用");
|