ZhangXianQiang
2024-06-20 4ae8ab0ed30891b5c3795eafa8856c564fdf8c1e
src/views/grade/components/answer-main/answer-single/index.vue
@@ -47,7 +47,7 @@
const answerState = (item) => {
  if (item.prefix === activeQuestion.value.correct) {
    const flag = checkRight(activeQuestion.value.correct, activeQuestion.value.right);
    const flag = activeQuestion.value.correct === activeQuestion.value.right;
    return {
      right: flag,
      wrong: !flag
@@ -60,9 +60,6 @@
  }
};
const checkRight = (currentAnswer, rightAnswer) => {
  return currentAnswer === rightAnswer;
};
const analysisState = computed(() => {
  return {