user1
2024-06-25 4a88624e86cf190a24e5d38490f8271f9d7c6a0d
src/components/matching/matching.vue
@@ -341,11 +341,13 @@
        const rightIndex = this.question.options.linkValues.findIndex(
          (citem) => citem.oldId == item.oldId
        );
        answerArr.push({
          left: index,
          right: rightIndex,
        });
      }
      console.log(this.question.userChoise,answerArr);
      this.isRight = this.areArraysEqual(this.question.userChoise, answerArr);
      this.isShowAnswer = true;
    },