123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261 |
- <template>
- <div
- v-if="isSyncState && examQuestion.questionType === 'MULTIPLE_CHOICE'"
- class="question-view"
- >
- <question-body
- :question-body="question.body"
- :exam-question="examQuestion"
- ></question-body>
- <div class="ops">
- <div class="stu-answer">{{ oldIndexToABCD }}</div>
- <div class="score">({{ examQuestion.questionScore }}分)</div>
- </div>
- <div
- v-for="(option, index) in newQuestionOptions"
- :key="index"
- class="option"
- @click="toggleAnswer(option.oldIndex)"
- >
- <div
- :class="studentAnswer.includes(option.oldIndex) && 'row-selected'"
- style="display: flex;"
- >
- <input
- type="checkbox"
- name="question"
- value="option.oldIndex"
- :checked="studentAnswer && studentAnswer.includes(option.oldIndex)"
- style="margin-top: 4px"
- />
- <span style="padding: 0 10px;">{{ optionName[index] }}: </span>
- <div v-if="option.value" class="question-options">
- <question-body
- :question-body="option.value.body"
- :exam-question="examQuestion"
- ></question-body>
- </div>
- </div>
- </div>
- <div class="reset">
- <i-button type="warning" size="large" @click="() => answerQuestion(null)">
- 重置答案
- </i-button>
- <span v-if="examShouldShowAnswer()">
- <i-button
- type="info"
- size="large"
- @click="showAnswer"
- >
- 显示答案
- </i-button>
- </span>
- <div v-if="examShouldShowAnswer() && isShowAnswer">
- 正确答案:
- <div>{{ rightAnswerTransform }}</div>
- </div>
- </div>
- </div>
- </template>
- <script>
- import QuestionBody from "./QuestionBody";
- import { createNamespacedHelpers } from "vuex";
- const { mapMutations, mapGetters } = createNamespacedHelpers(
- "examingHomeModule"
- );
- const optionName = "ABCDEFGHIJ".split("");
- export default {
- name: "MultipleQuestionView",
- components: {
- QuestionBody,
- },
- props: {
- question: {
- type: Object,
- default() {
- return {};
- },
- },
- examQuestion: {
- type: Object,
- default() {
- return {};
- },
- },
- },
- data() {
- return {
- questionBody: this.question.body,
- optionName,
- studentAnswer: this.examQuestion.studentAnswer || "",
- isShowAnswer: false,
- };
- },
- computed: {
- isSyncState() {
- return this.examQuestion.order == this.$route.params.order;
- },
- newQuestionOptions() {
- return this.question.questionOptionList.map((v, i) => {
- return {
- value: this.question.questionOptionList[
- this.examQuestion.optionPermutation[i]
- ],
- oldIndex: "" + this.examQuestion.optionPermutation[i],
- name: optionName[i],
- };
- });
- },
- oldIndexToABCD() {
- return (
- this.examQuestion.studentAnswer &&
- this.newQuestionOptions
- .filter(v => this.examQuestion.studentAnswer.includes(v.oldIndex))
- .map(v => v.name)
- .join("")
- );
- },
- rightAnswerTransform() {
- return (
- this.question.rightAnswer &&
- this.newQuestionOptions
- .filter(v => this.question.rightAnswer.includes(v.oldIndex))
- .map(v => v.name)
- .join("")
- );
- },
- },
- watch: {
- examQuestion: function() {
- this.studentAnswer = this.examQuestion.studentAnswer || "";
- },
- },
- created: function() {
- window.addEventListener("keyup", this.keyup);
- },
- beforeDestroy() {
- window.removeEventListener("keyup", this.keyup);
- },
- beforeUpdate() {
- this.answerQuestion(this.studentAnswer);
- },
- methods: {
- ...mapMutations(["updateExamQuestion"]),
- ...mapGetters(["examShouldShowAnswer"]),
- keyup(e) {
- if (
- ["BODY", "A", "BUTTON", "DIV"].includes(
- document.activeElement.tagName
- ) ||
- (["INPUT"].includes(document.activeElement.tagName) &&
- ["checkbox", "radio"].includes(document.activeElement.type))
- ) {
- if (
- optionName
- .map(v => "Key" + v)
- .slice(0, this.question.questionOptionList.length)
- .includes(e.code)
- ) {
- window._hmt.push(["_trackEvent", "正在考试页面", "快捷键", "ABCDE"]);
- const selectedOldIndex =
- "" +
- this.newQuestionOptions.find(v => v.name == e.code[3]).oldIndex;
- if (this.studentAnswer.includes(selectedOldIndex)) {
- this.studentAnswer = this.studentAnswer.replace(
- selectedOldIndex,
- ""
- );
- } else {
- this.studentAnswer = this.studentAnswer
- .concat(selectedOldIndex)
- .split("")
- .sort()
- .join("");
- }
- }
- }
- },
- toggleAnswer: function(selectedOldIndex) {
- if (this.studentAnswer.includes(selectedOldIndex)) {
- this.studentAnswer = this.studentAnswer.replace(selectedOldIndex, "");
- } else {
- this.studentAnswer = this.studentAnswer
- .concat(selectedOldIndex)
- .split("")
- .sort()
- .join("");
- }
- },
- async answerQuestion(studentAnswer) {
- if (this.isSyncState === false) {
- console.log("更新答案时,问题与答案的号码不一致。");
- return;
- }
- let realAnswer = studentAnswer;
- if (studentAnswer === "") {
- realAnswer = null;
- }
- if (realAnswer !== this.examQuestion.studentAnswer) {
- this.updateExamQuestion({
- order: this.examQuestion.order,
- studentAnswer: realAnswer,
- });
- }
- },
- showAnswer() {
- this.isShowAnswer = !this.isShowAnswer;
- },
- },
- };
- </script>
- <style scoped>
- .question-view {
- display: grid;
- grid-row-gap: 10px;
- }
- .question-body {
- font-size: 18px;
- margin-bottom: 10px;
- }
- .ops {
- display: flex;
- align-items: flex-end;
- }
- .stu-answer {
- width: 100px;
- border-bottom: 1px solid black;
- text-align: center;
- height: 20px;
- }
- .option {
- display: flex;
- cursor: pointer;
- padding-top: 10px;
- border-radius: 5px;
- }
- .option:hover {
- background-color: aliceblue;
- }
- .row-selected {
- background-color: aliceblue;
- width: 100%;
- }
- .question-options {
- text-align: left;
- }
- .question-options > .question-body {
- text-align: left;
- font-size: 16px !important;
- }
- </style>
|