|
@@ -189,7 +189,7 @@
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
-
|
|
|
+
|
|
|
<div v-if="[40].includes(toolType)" class="s_b_m_b_i_m_evaluation">
|
|
|
<div class="middleBox">
|
|
|
<div class="pfBox" v-for="(e, eIndex) in testData.rateJson" :key="eIndex">
|
|
@@ -260,6 +260,11 @@
|
|
|
<div class="cont" v-if="testData && testData.tableJson && testData.tableJson.text" v-html="testData.tableJson.text"></div>
|
|
|
</el-form>
|
|
|
</div>
|
|
|
+ <div v-if="[52].includes(toolType)" class="s_b_m_b_i_m_evaluation">
|
|
|
+ <div v-if="testData && testData.wordJson && testData.wordJson.text">
|
|
|
+ <div v-html="testData.wordJson.text"></div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
<div v-if="[7,1].includes(toolType)" class="s_b_m_b_i_m_evaluation">
|
|
|
<!-- {{ testData }} -->
|
|
|
<!-- <img src="" alt=""> -->
|
|
@@ -665,6 +670,7 @@ export default {
|
|
|
toolList:[
|
|
|
{label:"选择题",value:45,img:require("../../assets/icon/thirdToolList/choose.png")},
|
|
|
{label:"表格",value:48,img:require("../../assets/icon/fourthToolList/table.png")},
|
|
|
+ {label:"文档",value:52,img:require("../../assets/icon/fourthToolList/text.png")},
|
|
|
{label:"学生分组",value:49,img:require("../../assets/icon/fourthToolList/group.png")},
|
|
|
{label:"电子白板",value:1,img:require("../../assets/icon/secondToolList/whiteBoard.png")},
|
|
|
{label:"问答题",value:15,img:require("../../assets/icon/thirdToolList/answer.png")},
|
|
@@ -1010,14 +1016,14 @@ export default {
|
|
|
this.noWorksStudent = JSON.parse(
|
|
|
JSON.stringify(this.noWorksSData[this.toolIndex])
|
|
|
);
|
|
|
- if(![52].includes(this.toolType)){
|
|
|
+ // if(![52].includes(this.toolType)){
|
|
|
let _tempData = this.chapInfoListData[this.courseType].chapterInfo[0]
|
|
|
.taskJson[this.taskCount].toolChoose[this.toolIndex];
|
|
|
this.testData = _tempData ? _tempData : null;
|
|
|
this.testJson = this.testData.testJson
|
|
|
? this.testData.testJson.testJson
|
|
|
: null;
|
|
|
- }
|
|
|
+ // }
|
|
|
}
|
|
|
},
|
|
|
close() {
|