|
@@ -120,8 +120,11 @@
|
|
|
style="white-space: nowrap"
|
|
|
:data-key="index * 10 + _index + 1"
|
|
|
class="coll-table-topic-item"
|
|
|
+ :class="{
|
|
|
+ 'text-red': list[index * 10 + _index].isError,
|
|
|
+ }"
|
|
|
>
|
|
|
- {{ index * 10 + _index + 1 }}
|
|
|
+ {{list[index * 10 + _index ].userAnswerLetter || "" }}
|
|
|
</div>
|
|
|
</td>
|
|
|
</tr>
|
|
@@ -791,6 +794,9 @@ export default defineComponent({
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
+.text-red {
|
|
|
+ color: red;
|
|
|
+}
|
|
|
.w-half {
|
|
|
width: 50%;
|
|
|
}
|