ZhangXianQiang
2024-07-01 6041c2e7281472fb9f86640f58698e1f6d11afb1
fix:多选回显问题
1个文件已修改
2 ■■■ 已修改文件
src/views/exam/components/answer-sheet/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/exam/components/answer-sheet/index.vue
@@ -28,7 +28,7 @@
const itemClass = (question,type,index) => {
  return {
    answer: question.answer || question.answerList,
    answer: question.answer || (question.answerList && question.answerList.length),
    active: currentType.value === type && currentIndex.value === index
  }
}