|
@@ -645,7 +645,7 @@ export default {
|
|
|
if (this.stuAnswer.length) {
|
|
|
let index = this.quIndex
|
|
|
this.score = this.stuScore[index] == -1 ? null : this.stuScore[index]
|
|
|
- let answerOrMark = this.markArr[index] ? this.getMarkHtml(this.markArr[index]) : (this.quNoList[index].type === 'subjective' && this.quNoList[index].answerType != 'text' && this.stuAnswer[index].length ? this.getSubjectiveHtml(this.stuAnswer[index].toString(), this.quNoList[index].answerType) : this.stuAnswer[index])
|
|
|
+ let answerOrMark = this.markArr[index] ? this.getMarkHtml(this.markArr[index]) : (this.quNoList[index].type === 'subjective' && this.quNoList[index].answerType && this.quNoList[index].answerType != 'text' && this.stuAnswer[index].length ? this.getSubjectiveHtml(this.stuAnswer[index].toString(), this.quNoList[index].answerType) : this.stuAnswer[index])
|
|
|
return answerOrMark
|
|
|
} else {
|
|
|
return this.stuId + this.$t('learnActivity.mark.noAnswer')
|