|
@@ -1,7 +1,16 @@
|
|
|
<!-- -->
|
|
|
<template>
|
|
|
- <div class="Big-Book-prev-Textdes" v-if="curQue">
|
|
|
- <h6
|
|
|
+ <div
|
|
|
+ class="Big-Book-prev-Textdes"
|
|
|
+ v-if="
|
|
|
+ curQue && judgeAnswer == 'standardAnswer'
|
|
|
+ ? userErrList.length > 0
|
|
|
+ ? true
|
|
|
+ : false
|
|
|
+ : true
|
|
|
+ "
|
|
|
+ >
|
|
|
+ <h6
|
|
|
v-if="judgeAnswer == 'userAnswer' || judgeAnswer == 'studentAnswer'"
|
|
|
class="standardTitle"
|
|
|
style="margin: 10px 0 8px 24px"
|
|
@@ -26,10 +35,12 @@
|
|
|
judgeAnswer == 'standardAnswer' ? 'standardAnswer' : '',
|
|
|
judgeAnswer == 'standardAnswer'
|
|
|
? 'correct'
|
|
|
- : curQue.Bookanswer[indexs].userAnswerJudge
|
|
|
- ? curQue.Bookanswer[indexs].userAnswerJudge == '[JUDGE##F##JUDGE]'
|
|
|
- ? 'error'
|
|
|
- : 'correct'
|
|
|
+ : judgeAnswer == 'studentAnswer'
|
|
|
+ ? curQue.Bookanswer[indexs].userAnswerJudge
|
|
|
+ ? curQue.Bookanswer[indexs].userAnswerJudge == '[JUDGE##F##JUDGE]'
|
|
|
+ ? 'error'
|
|
|
+ : 'correct'
|
|
|
+ : ''
|
|
|
: '',
|
|
|
]"
|
|
|
>
|
|
@@ -497,8 +508,9 @@ export default {
|
|
|
|
|
|
.correct {
|
|
|
.active-error-btn {
|
|
|
- background: #fff url("../../../assets/newImage/common/correct-error-btn.png")
|
|
|
- center no-repeat !important;
|
|
|
+ background: #fff
|
|
|
+ url("../../../assets/newImage/common/correct-error-btn.png") center
|
|
|
+ no-repeat !important;
|
|
|
background-size: 24px !important;
|
|
|
}
|
|
|
.active {
|