457 lines
12 KiB
Vue
Raw Normal View History

2025-02-26 23:45:00 +08:00
<template>
2025-03-04 19:02:35 +08:00
<div class="quiz-container" ref="containerRef">
2025-02-26 23:45:00 +08:00
<!-- 加载中提示 -->
<div v-if="isLoading" class="loading">加载中...</div>
<!-- 当前题目 -->
<div v-else-if="currentQuestion" class="question-container">
<h2>题目 {{ questionCount }}</h2>
2025-03-04 19:02:35 +08:00
<QuestionText :text="currentQuestion.text" :medias="data.medias"/>
2025-02-26 23:45:00 +08:00
<div class="options">
<div v-for="(answer, idx) in currentQuestion.answers.slice(1)" :key="idx" class="option">
2025-03-04 19:02:35 +08:00
<label
:class="{ 'correct': submitted && idx === correctIndex, 'incorrect': submitted && userAnswer === idx && idx !== correctIndex }">
2025-02-26 23:45:00 +08:00
<input
type="radio"
:value="idx"
v-model="userAnswer"
:name="'question'"
:disabled="submitted"
/>
2025-02-27 07:40:11 +08:00
<general-renderer :content-input="processMedia(answer, data.medias)"></general-renderer>
2025-02-26 23:45:00 +08:00
</label>
</div>
</div>
<!-- 提交按钮或下一题按钮 -->
<button v-if="!submitted" @click="submitAnswer" class="submit-btn">提交答案</button>
<button v-else @click="nextQuestion" class="next-btn">下一题</button>
<!-- 答题结果和解析 -->
<div v-if="submitted" class="result">
<p v-if="isCorrect" class="correct-text">答对了</p>
<p v-else class="incorrect-text">答错了</p>
2025-03-04 19:02:35 +08:00
<p>正确答案是
<general-renderer :content-input="processMedia(correctAnswerText, data.medias)"></general-renderer>
</p>
2025-02-26 23:45:00 +08:00
<div v-if="currentQuestion.explanation" class="explanation">
<h3>解题思路</h3>
2025-02-27 07:40:11 +08:00
<general-renderer :content-input="processMedia(currentQuestion.explanation, data.medias)"></general-renderer>
2025-02-26 23:45:00 +08:00
</div>
<!-- 类似题目对比 -->
<div v-if="similarQuestions.length > 0" class="similar-questions">
<h3>对比其他类似题目</h3>
<div v-for="(similar, index) in similarQuestions" :key="index" class="similar-question">
<h4>题目 {{ index + 1 }}</h4>
2025-03-04 19:02:35 +08:00
<QuestionText :text="similar.text" :medias="data.medias"/>
<p>正确答案
<general-renderer :content-input="processMedia(similar.correctAnswer, data.medias)"></general-renderer>
</p>
2025-02-26 23:45:00 +08:00
</div>
</div>
</div>
</div>
<!-- 进度条 -->
<div v-if="!isLoading" class="progress-bar">
2025-02-27 23:03:46 +08:00
<div v-if="progressPercentage"
2025-03-04 19:02:35 +08:00
class="progress"
:style="{
2025-02-26 23:45:00 +08:00
width: `${progressPercentage}%`,
2025-02-27 23:03:46 +08:00
background: getColor(progressPercentage)
2025-02-26 23:45:00 +08:00
}"
>
{{ progressPercentage.toFixed(1) }}%
</div>
</div>
</div>
</template>
<script setup>
2025-02-27 23:03:46 +08:00
import {reactive, ref, onMounted, computed, onUpdated} from 'vue';
2025-02-26 23:45:00 +08:00
import axios from 'axios';
import QuestionText from './QuestionText.vue';
2025-02-27 07:40:11 +08:00
import GeneralRenderer from "../../../components/GeneralRenderer.vue";
2025-03-04 19:02:35 +08:00
import {useRoute} from 'vue-router'
2025-02-27 23:03:46 +08:00
import swal from "../../../utils/sweetalert.js";
2025-03-04 19:02:35 +08:00
import router from "../../../router/index.js";
2025-02-27 23:03:46 +08:00
const route = useRoute()
2025-02-26 23:45:00 +08:00
// 响应式数据存储 JSON
const data = reactive({
itemtypes: [],
texts: [],
explanations: [],
gradings: [],
answerkeys: [],
answers: [],
medias: {}
});
// 当前题目、用户答案、状态变量
2025-03-04 19:02:35 +08:00
const containerRef = ref(null);
2025-02-26 23:45:00 +08:00
const currentQuestion = ref(null);
const userAnswer = ref(null);
const submitted = ref(false);
const isCorrect = ref(false);
const correctAnswerText = ref('');
const correctIndex = ref(null);
const isLoading = ref(true);
2025-02-27 07:40:11 +08:00
const questionCount = ref(1); // 当前题目序号
const similarQuestions = ref([]);
2025-02-26 23:45:00 +08:00
const recentResults = ref([]);
2025-02-27 07:40:11 +08:00
const examQuestions = ref([]); // 当前试卷的题目列表
const totalQuestions = ref(0);
// 最近40题的答题记录
2025-02-26 23:45:00 +08:00
// 进度条百分比
2025-02-27 07:40:11 +08:00
2025-02-26 23:45:00 +08:00
const progressPercentage = computed(() => {
if (recentResults.value.length === 0) return 0;
const correctCount = recentResults.value.filter(result => result).length;
2025-02-27 07:40:11 +08:00
return (correctCount / Math.min(recentResults.value.length, totalQuestions.value)) * 100;
2025-02-26 23:45:00 +08:00
});
2025-03-04 19:02:35 +08:00
const initial = async () => {
2025-02-27 23:03:46 +08:00
const file = route.query.id || 'phy250226';
2025-02-26 23:45:00 +08:00
try {
2025-02-27 23:03:46 +08:00
const response = await axios.get(`https://mva-cyber.club/data/file/${file}.json`);
2025-02-26 23:45:00 +08:00
const jsonData = response.data;
Object.assign(data, jsonData);
2025-02-27 07:40:11 +08:00
generateNewExam(); // 初始生成一份试卷
2025-02-26 23:45:00 +08:00
} catch (error) {
console.error('加载数据失败:', error);
2025-02-27 23:03:46 +08:00
swal.tip('error', '数据加载失败,请稍后重试。')
2025-03-04 19:02:35 +08:00
await router.push('/demos/pod');
2025-02-26 23:45:00 +08:00
} finally {
isLoading.value = false;
}
2025-02-27 23:03:46 +08:00
}
// 加载数据
onMounted(initial);
function getColor(progressPercentage) {
let r, g, b;
2025-02-26 23:45:00 +08:00
2025-02-27 23:03:46 +08:00
// 0% 到 100% 渐变,从红色到绿色
r = Math.floor(200 * (1 - progressPercentage / 100)); // 红色逐渐减少
g = Math.floor(200 * (progressPercentage / 100)); // 绿色逐渐增加
b = 0; // 蓝色始终为0
// 返回rgb颜色格式
return `rgb(${r}, ${g}, ${b})`;
}
2025-03-04 19:02:35 +08:00
2025-02-26 23:45:00 +08:00
// 随机选择一道题
function selectRandomQuestion() {
if (data.texts.length <= 1) return;
const index = Math.floor(Math.random() * (data.texts.length - 1)) + 1;
currentQuestion.value = {
text: data.texts[index],
answers: data.answers[index],
answerkeys: data.answerkeys[index],
explanation: data.explanations[index],
type: data.itemtypes[index] // 保存题目类型用于查找相似题目
};
userAnswer.value = null;
submitted.value = false;
similarQuestions.value = [];
}
// 处理媒体标签
function processMedia(text, medias) {
if (!text) return '';
const mediaRegex = /<media i(\d+)>/g;
return text.replace(mediaRegex, (match, id) => {
const mediaKey = `m${id}`;
if (medias[mediaKey]) {
const [type, url, width, height] = medias[mediaKey];
if (type === 'image') {
2025-02-27 23:03:46 +08:00
return `<img src="${url}" width="100%" height="auto" alt="Question Image" />`;
2025-02-26 23:45:00 +08:00
}
}
return '';
});
}
2025-03-04 19:02:35 +08:00
2025-02-26 23:45:00 +08:00
function calculateStringSimilarity(str1, str2) {
// 处理空字符串或非字符串输入
if (typeof str1 !== 'string' || typeof str2 !== 'string') {
return 0;
}
// 如果两个字符串完全相同直接返回100%
if (str1 === str2) {
return 100;
}
// 获取字符串长度
const len1 = str1.length;
const len2 = str2.length;
// 如果任一字符串为空返回0%
if (len1 === 0 || len2 === 0) {
return 0;
}
// 创建二维数组
const matrix = Array(len2 + 1).fill(null).map(() =>
Array(len1 + 1).fill(null)
);
// 初始化第一行和第一列
for (let i = 0; i <= len1; i++) {
matrix[0][i] = i;
}
for (let j = 0; j <= len2; j++) {
matrix[j][0] = j;
}
// 填充矩阵
for (let j = 1; j <= len2; j++) {
for (let i = 1; i <= len1; i++) {
const indicator = str1[i - 1] === str2[j - 1] ? 0 : 1;
matrix[j][i] = Math.min(
matrix[j][i - 1] + 1, // 删除
matrix[j - 1][i] + 1, // 插入
matrix[j - 1][i - 1] + indicator // 替换
);
}
}
// 计算相似度百分比
const maxLength = Math.max(len1, len2);
const levenshteinDistance = matrix[len2][len1];
const similarity = ((maxLength - levenshteinDistance) / maxLength) * 100;
// 返回保留两位小数的百分比
return Number(similarity.toFixed(2));
}
2025-03-04 19:02:35 +08:00
2025-02-27 07:40:11 +08:00
// 生成新试卷
function generateNewExam() {
if (data.texts.length <= 1) return;
// 创建所有题目的索引数组并打乱顺序
2025-03-04 19:02:35 +08:00
const indices = Array.from({length: data.texts.length - 1}, (_, i) => i + 1);
2025-02-27 07:40:11 +08:00
for (let i = indices.length - 1; i > 0; i--) {
const j = Math.floor(Math.random() * (i + 1));
[indices[i], indices[j]] = [indices[j], indices[i]];
}
// 生成试卷题目列表
examQuestions.value = indices.map(index => ({
text: data.texts[index],
answers: data.answers[index],
answerkeys: data.answerkeys[index],
explanation: data.explanations[index],
type: data.itemtypes[index]
}));
totalQuestions.value = examQuestions.value.length;
questionCount.value = 1;
recentResults.value = [];
selectCurrentQuestion();
}
2025-03-04 19:02:35 +08:00
2025-02-26 23:45:00 +08:00
// 查找类似题目
function findSimilarQuestions() {
const currentText = currentQuestion.value.text;
const similar = [];
for (let i = 1; i < data.itemtypes.length; i++) {
if (
2025-02-27 07:40:11 +08:00
calculateStringSimilarity(data.texts[i], currentText) > 50 && // 相似度
2025-02-26 23:45:00 +08:00
data.texts[i] !== currentQuestion.value.text// 不是当前题目
// similar.length < 2 // 最多选 2 道
) {
const correctIdx = data.answerkeys[i].findIndex((key, idx) => idx > 0 && key === 1) - 1;
similar.push({
text: data.texts[i],
correctAnswer: data.answers[i][correctIdx + 1]
});
}
}
similarQuestions.value = similar;
}
2025-03-04 19:02:35 +08:00
2025-02-27 07:40:11 +08:00
function selectCurrentQuestion() {
if (questionCount.value <= totalQuestions.value) {
currentQuestion.value = examQuestions.value[questionCount.value - 1];
userAnswer.value = null;
submitted.value = false;
similarQuestions.value = [];
}
}
2025-03-04 19:02:35 +08:00
2025-02-26 23:45:00 +08:00
// 提交答案
function submitAnswer() {
if (userAnswer.value === null) {
2025-02-27 23:03:46 +08:00
swal.tip('info', '必须选一个')
2025-02-26 23:45:00 +08:00
return;
}
correctIndex.value = currentQuestion.value.answerkeys.findIndex((key, idx) => idx > 0 && key === 1) - 1;
isCorrect.value = userAnswer.value === correctIndex.value;
2025-03-04 19:02:35 +08:00
containerRef.value.style.border = `
${isCorrect.value ? '#00c800' : '#c80000'} solid 5px`;
setTimeout(() => {
containerRef.value.style.border = 'rgba(126, 126, 126, 0) solid 5px';
}, 1000)
2025-02-26 23:45:00 +08:00
correctAnswerText.value = currentQuestion.value.answers[correctIndex.value + 1];
submitted.value = true;
2025-02-27 07:40:11 +08:00
// 更新最近40题记录
2025-02-26 23:45:00 +08:00
recentResults.value.push(isCorrect.value);
2025-02-27 07:40:11 +08:00
if (recentResults.value.length > 40) {
2025-02-26 23:45:00 +08:00
recentResults.value.shift();
}
// 查找类似题目
findSimilarQuestions();
}
// 下一题
function nextQuestion() {
2025-02-27 07:40:11 +08:00
if (questionCount.value < totalQuestions.value) {
questionCount.value++;
selectCurrentQuestion();
} else {
2025-02-27 23:03:46 +08:00
swal.tip('success', '所有题目已完成!将生成新试卷。')
2025-02-27 07:40:11 +08:00
generateNewExam(); // 完成当前试卷后生成新试卷
}
2025-02-26 23:45:00 +08:00
}
</script>
<style scoped>
.quiz-container {
2025-02-27 23:03:46 +08:00
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
2025-03-04 19:02:35 +08:00
width: calc(100% - 49px);
2025-02-27 23:03:46 +08:00
//max-width: 800px;
margin: auto;
2025-03-04 19:02:35 +08:00
height: calc(100vh - 109px);
2025-02-26 23:45:00 +08:00
overflow-y: auto;
padding: 20px;
font-family: Arial, sans-serif;
}
.loading {
text-align: center;
font-size: 18px;
color: #666;
}
.question-container {
margin-bottom: 20px;
2025-02-27 23:03:46 +08:00
max-width: 800px;
2025-02-26 23:45:00 +08:00
}
.progress-bar {
2025-02-27 23:03:46 +08:00
width: calc(100% - 100px);
2025-02-26 23:45:00 +08:00
height: 20px;
2025-02-27 23:03:46 +08:00
background-color: rgba(126, 126, 126, 0.23);
2025-02-26 23:45:00 +08:00
margin-top: 20px;
border-radius: 10px;
overflow: hidden;
2025-02-27 23:03:46 +08:00
position: fixed;
bottom: 20px;
2025-02-26 23:45:00 +08:00
}
.progress {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
font-weight: bold;
transition: width 0.5s ease;
}
.options {
margin-top: 20px;
}
.option {
margin: 10px 0;
2025-02-27 23:03:46 +08:00
2025-02-26 23:45:00 +08:00
}
.option label {
display: flex;
2025-02-27 23:03:46 +08:00
flex-direction: row;
2025-02-26 23:45:00 +08:00
align-items: center;
cursor: pointer;
padding: 10px 0;
}
.option input {
margin-right: 10px;
}
.option label.correct {
color: green;
font-weight: bold;
}
.option label.incorrect {
color: red;
}
.submit-btn,
.next-btn {
margin-top: 20px;
padding: 10px 20px;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
.submit-btn:hover,
.next-btn:hover {
background-color: #0056b3;
}
.result {
margin-top: 20px;
padding: 15px;
border-top: 1px solid #ddd;
}
.correct-text {
color: green;
margin: 10px 0;
}
.incorrect-text {
color: red;
margin: 10px 0;
}
.explanation {
margin-top: 20px;
}
.explanation h3 {
margin-bottom: 10px;
}
.similar-questions {
margin-top: 20px;
padding: 15px;
border-top: 1px dashed #ddd;
}
.similar-question {
margin-bottom: 15px;
}
.similar-question h4 {
margin-bottom: 10px;
}
</style>