|
@@ -215,6 +215,7 @@
|
|
|
<div v-if="l.tool[0] == 15">
|
|
|
<div class="toolBlk">
|
|
|
<img
|
|
|
+ class="toolImg"
|
|
|
src="../assets/icon/thirdToolList/answer.png"
|
|
|
alt=""
|
|
|
/>
|
|
@@ -230,6 +231,7 @@
|
|
|
<div v-if="l.tool[0] == 52">
|
|
|
<div class="toolBlk">
|
|
|
<img
|
|
|
+ class="toolImg"
|
|
|
src="../assets/icon/fourthToolList/text.png"
|
|
|
alt=""
|
|
|
/>
|
|
@@ -245,11 +247,13 @@
|
|
|
<div v-if="l.tool[0] == 16 || l.tool[0] == 50">
|
|
|
<div class="toolBlk">
|
|
|
<img
|
|
|
+ class="toolImg"
|
|
|
v-if="l.tool[0] == 16"
|
|
|
src="../assets/icon/thirdToolList/work.png"
|
|
|
alt=""
|
|
|
/>
|
|
|
<img
|
|
|
+ class="toolImg"
|
|
|
v-if="l.tool[0] == 50"
|
|
|
src="../assets/icon/thirdToolList/plwork.png"
|
|
|
alt=""
|
|
@@ -274,16 +278,19 @@
|
|
|
>
|
|
|
<div class="toolBlk">
|
|
|
<img
|
|
|
+ class="toolImg"
|
|
|
v-if="l.tool[0] == 1"
|
|
|
src="../assets/icon/secondToolList/whiteBoard.png"
|
|
|
alt=""
|
|
|
/>
|
|
|
<img
|
|
|
+ class="toolImg"
|
|
|
v-if="l.tool[0] == 3"
|
|
|
src="../assets/icon/secondToolList/mindMapping.png"
|
|
|
alt=""
|
|
|
/>
|
|
|
<img
|
|
|
+ class="toolImg"
|
|
|
v-if="l.tool[0] == 7"
|
|
|
src="../assets/icon/secondToolList/mindNetwork.png"
|
|
|
alt=""
|
|
@@ -314,6 +321,7 @@
|
|
|
<div v-if="l.tool[0] == 48">
|
|
|
<div class="toolBlk">
|
|
|
<img
|
|
|
+ class="toolImg"
|
|
|
src="../assets/icon/fourthToolList/table.png"
|
|
|
alt=""
|
|
|
/>
|
|
@@ -331,6 +339,7 @@
|
|
|
<div v-if="l.tool[0] == 4">
|
|
|
<div class="toolBlk">
|
|
|
<img
|
|
|
+ class="toolImg"
|
|
|
src="../assets/icon/thirdToolList/ask.png"
|
|
|
alt=""
|
|
|
/>
|
|
@@ -379,6 +388,7 @@
|
|
|
<div v-if="l.tool[0] == 45">
|
|
|
<div class="toolBlk">
|
|
|
<img
|
|
|
+ class="toolImg"
|
|
|
src="../assets/icon/thirdToolList/choose.png"
|
|
|
alt=""
|
|
|
/>
|
|
@@ -393,7 +403,22 @@
|
|
|
v-for="(i, index) in l.content[0].testJson"
|
|
|
:key="index + 'm'"
|
|
|
>
|
|
|
- <div>题目:{{ i.teststitle }}</div>
|
|
|
+ <div>题目:{{ i.teststitle }}
|
|
|
+
|
|
|
+ <span
|
|
|
+ style="color: #868ce4"
|
|
|
+ >答案:</span
|
|
|
+ >
|
|
|
+ <span
|
|
|
+ v-if="
|
|
|
+ JSON.stringify(l.content[0].radio[index]) ==
|
|
|
+ JSON.stringify(i.answer)
|
|
|
+ "
|
|
|
+ style="color: #868ce4"
|
|
|
+ >回答正确</span
|
|
|
+ >
|
|
|
+ <span v-else style="color: red">回答错误</span>
|
|
|
+ </div>
|
|
|
<div
|
|
|
v-if="i.type == 1"
|
|
|
style="display: flex; flex-direction: column"
|
|
@@ -478,6 +503,7 @@
|
|
|
<div v-if="l.tool[0] == 41">
|
|
|
<div class="toolBlk">
|
|
|
<img
|
|
|
+ class="toolImg"
|
|
|
src="../assets/icon/thirdToolList/select.png"
|
|
|
alt=""
|
|
|
/>
|
|
@@ -502,15 +528,38 @@
|
|
|
:key="itInd"
|
|
|
>{{ item }}</span
|
|
|
>
|
|
|
+
|
|
|
+ </div>
|
|
|
+ <div style="margin: 10px 0;">
|
|
|
+ <span style="margin-right: 10px">回答:</span>
|
|
|
+
|
|
|
+ <div
|
|
|
+ style="margin-right: 10px"
|
|
|
+ v-for="(item, itInd) in l.content[0]"
|
|
|
+ :key="itInd"
|
|
|
+ >选项{{ itInd + 1 }}:{{ l.selectJson.select[item] }}
|
|
|
+ <span
|
|
|
+ v-if="
|
|
|
+ l.selectJson.answer[itInd] ==
|
|
|
+ l.content[0][itInd]
|
|
|
+ "
|
|
|
+ style="color: #868ce4"
|
|
|
+ >回答正确</span
|
|
|
+ >
|
|
|
+ <span v-else style="color: red">回答错误</span>
|
|
|
+ </div
|
|
|
+ >
|
|
|
+
|
|
|
+
|
|
|
</div>
|
|
|
<div>
|
|
|
<span style="margin-right: 10px">答案:</span>
|
|
|
|
|
|
<span
|
|
|
style="margin-right: 10px"
|
|
|
- v-for="(item, itInd) in l.content[0]"
|
|
|
+ v-for="(item, itInd) in l.selectJson.answer"
|
|
|
:key="itInd"
|
|
|
- >{{ itInd + 1 }}、{{ l.selectJson.select[item] }}</span
|
|
|
+ >选项{{ itInd + 1 }}:{{ l.selectJson.select[item] }}</span
|
|
|
>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -519,6 +568,7 @@
|
|
|
<div v-if="l.tool[0] == 47">
|
|
|
<div class="toolBlk">
|
|
|
<img
|
|
|
+ class="toolImg"
|
|
|
src="../assets/icon/fourthToolList/conSentences.png"
|
|
|
alt=""
|
|
|
/>
|
|
@@ -568,7 +618,7 @@
|
|
|
flex-wrap: wrap;
|
|
|
"
|
|
|
>
|
|
|
- 学生回答:
|
|
|
+ 回答:
|
|
|
<div
|
|
|
class="sortTool"
|
|
|
v-for="(i, index) in i.chooseSenList"
|
|
@@ -1801,6 +1851,7 @@ export default {
|
|
|
|
|
|
k.content = t;
|
|
|
});
|
|
|
+
|
|
|
|
|
|
res.data[8].forEach((k, i) => {
|
|
|
k.content = k.content.split(",");
|
|
@@ -2297,6 +2348,12 @@ export default {
|
|
|
</script>
|
|
|
|
|
|
<style scoped>
|
|
|
+.eliP {
|
|
|
+ overflow: hidden;
|
|
|
+ white-space: nowrap;
|
|
|
+ text-overflow: ellipsis;
|
|
|
+ width: 80%;
|
|
|
+}
|
|
|
.body_student {
|
|
|
margin: 0px auto;
|
|
|
width: 98%;
|
|
@@ -2884,10 +2941,10 @@ export default {
|
|
|
margin-left: 10px;
|
|
|
}
|
|
|
|
|
|
-.courseTitle span:nth-child(2) {
|
|
|
+/* .courseTitle span:nth-child(2) { */
|
|
|
/* font-size: 14px;
|
|
|
cursor: pointer; */
|
|
|
-}
|
|
|
+/* } */
|
|
|
|
|
|
.bigImg {
|
|
|
margin-top: 10px;
|
|
@@ -3128,9 +3185,9 @@ export default {
|
|
|
font-weight: 700;
|
|
|
}
|
|
|
|
|
|
-.ask_Answer {
|
|
|
+/* .ask_Answer { */
|
|
|
/* margin-top: 10px; */
|
|
|
-}
|
|
|
+/* } */
|
|
|
|
|
|
.ask_Answer_title {
|
|
|
font-size: 18px;
|
|
@@ -3576,10 +3633,10 @@ export default {
|
|
|
align-items: baseline;
|
|
|
}
|
|
|
|
|
|
-.fullBox {
|
|
|
+/* .fullBox { */
|
|
|
/* overflow: unset !important;
|
|
|
height: auto !important; */
|
|
|
-}
|
|
|
+/* } */
|
|
|
|
|
|
.fullZyBox {
|
|
|
width: 60% !important;
|
|
@@ -3904,10 +3961,13 @@ export default {
|
|
|
.toolBlk {
|
|
|
display: flex;
|
|
|
height: 44px;
|
|
|
- padding-left: 5px;
|
|
|
+ /* padding-left: 5px; */
|
|
|
box-sizing: border-box;
|
|
|
margin: 15px 0;
|
|
|
}
|
|
|
+.toolImg{
|
|
|
+ background-color: bisque;
|
|
|
+}
|
|
|
.toolBlk img {
|
|
|
height: 100%;
|
|
|
margin-right: 8px;
|