| | |
| | | <div class="wrapper h-full flex flex-col"> |
| | | <div class="title-wrapper w-full flex mb-5"> |
| | | <div class="title text-xl font-semibold ">{{ examType[currentType] }} ({{ |
| | | examStore.getActiveQuestion.score }}分) |
| | | examStore.getActiveQuestion.questionScore }}分) |
| | | </div> |
| | | </div> |
| | | |
| | |
| | | import AnswerSingle from './components/answer-main/answer-single/index.vue'; |
| | | import AnswerMultiple from './components/answer-main/answer-multiple/index.vue'; |
| | | import AnswerAudio from './components/answer-main/answer-audio/index.vue'; |
| | | import AnswerFill from './components/answer-main/answer-fill/index.vue'; |
| | | |
| | | import { useExamStore } from '@/store/index.js'; |
| | | import { useRouter } from 'vue-router'; |
| | |
| | | const typeComponent = { |
| | | 1: AnswerSingle, |
| | | 2: AnswerMultiple, |
| | | 6: AnswerAudio, |
| | | 4: AnswerFill, |
| | | 6: AnswerAudio |
| | | }; |
| | | |
| | | const quitDialog = ref(false); |