{
return (correctCount / Math.min(recentResults.value.length, totalQuestions.value)) * 100;
});
-const initial = async () => {
+const initial = async () => {
const file = route.query.id || 'phy250226';
try {
const response = await axios.get(`https://mva-cyber.club/data/file/${file}.json`);
@@ -117,6 +124,7 @@ const initial = async () => {
} catch (error) {
console.error('加载数据失败:', error);
swal.tip('error', '数据加载失败,请稍后重试。')
+ await router.push('/demos/pod');
} finally {
isLoading.value = false;
}
@@ -136,6 +144,7 @@ function getColor(progressPercentage) {
// 返回rgb颜色格式
return `rgb(${r}, ${g}, ${b})`;
}
+
// 随机选择一道题
function selectRandomQuestion() {
if (data.texts.length <= 1) return;
@@ -167,6 +176,7 @@ function processMedia(text, medias) {
return '';
});
}
+
function calculateStringSimilarity(str1, str2) {
// 处理空字符串或非字符串输入
if (typeof str1 !== 'string' || typeof str2 !== 'string') {
@@ -220,12 +230,13 @@ function calculateStringSimilarity(str1, str2) {
// 返回保留两位小数的百分比
return Number(similarity.toFixed(2));
}
+
// 生成新试卷
function generateNewExam() {
if (data.texts.length <= 1) return;
// 创建所有题目的索引数组并打乱顺序
- const indices = Array.from({ length: data.texts.length - 1 }, (_, i) => i + 1);
+ const indices = Array.from({length: data.texts.length - 1}, (_, i) => i + 1);
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]];
@@ -245,6 +256,7 @@ function generateNewExam() {
recentResults.value = [];
selectCurrentQuestion();
}
+
// 查找类似题目
function findSimilarQuestions() {
const currentText = currentQuestion.value.text;
@@ -264,6 +276,7 @@ function findSimilarQuestions() {
}
similarQuestions.value = similar;
}
+
function selectCurrentQuestion() {
if (questionCount.value <= totalQuestions.value) {
currentQuestion.value = examQuestions.value[questionCount.value - 1];
@@ -272,6 +285,7 @@ function selectCurrentQuestion() {
similarQuestions.value = [];
}
}
+
// 提交答案
function submitAnswer() {
if (userAnswer.value === null) {
@@ -280,6 +294,11 @@ function submitAnswer() {
}
correctIndex.value = currentQuestion.value.answerkeys.findIndex((key, idx) => idx > 0 && key === 1) - 1;
isCorrect.value = userAnswer.value === correctIndex.value;
+ containerRef.value.style.border = `
+ ${isCorrect.value ? '#00c800' : '#c80000'} solid 5px`;
+ setTimeout(() => {
+ containerRef.value.style.border = 'rgba(126, 126, 126, 0) solid 5px';
+ }, 1000)
correctAnswerText.value = currentQuestion.value.answers[correctIndex.value + 1];
submitted.value = true;
@@ -311,10 +330,10 @@ function nextQuestion() {
flex-direction: column;
align-items: center;
justify-content: flex-start;
- width: calc(100% - 40px);
+ width: calc(100% - 49px);
//max-width: 800px;
margin: auto;
- height: calc(100vh - 120px);
+ height: calc(100vh - 109px);
overflow-y: auto;
padding: 20px;
font-family: Arial, sans-serif;
diff --git a/src/pages/errorPages/notFound.vue b/src/pages/errorPages/notFound.vue
new file mode 100644
index 0000000..8148262
--- /dev/null
+++ b/src/pages/errorPages/notFound.vue
@@ -0,0 +1,14 @@
+
+
+
+404 Not Found
+ 你来到了未知领域
+
+
+
\ No newline at end of file
diff --git a/src/router/index.js b/src/router/index.js
index cc51b22..efeeb45 100644
--- a/src/router/index.js
+++ b/src/router/index.js
@@ -21,33 +21,48 @@ import Tools_home from "../pages/Tools_home.vue";
import GpaCalculator_page from "../pages/toolPages/gpaCalculator/gpaCalculator_page.vue";
import About from "../pages/About.vue";
import Editor from "../pages/Editor.vue";
+import NotFound from "../pages/errorPages/notFound.vue";
const routes = [
- {
+ {path: '/404',
+ name: '404',
+ component: NotFound,
+ meta: {title: '404'}
+ }, {
path: '/',
name: 'Home',
component: Home,
+ meta: {title: '首页'}
}, {
path: '/login',
name: 'Login',
- component: Login
+ component: Login,
+ meta: {title: '登录'}
}, {
path: '/blog',
name: 'Blog',
- component: Blog_home
+ component: Blog_home,
+ meta: {title: '博客'}
}, {
path: '/projects',
name: 'Projects',
- component: Projects
+ component: Projects,
+ meta: {title: '项目'}
}, {
path: '/demos',
name: 'Demos',
component: Demos_home,
+ meta: {title: '实例'},
children: [
- {path: "board", component: Board_page},
+ {
+ path: "board",
+ component: Board_page,
+ meta: {title: '留言板'},
+ },
{
path: "pod",
component: Pod_page,
+ meta: {title: '做题'},
children: [
{path: "quiz", component: Pod_quiz}
]
@@ -57,6 +72,7 @@ const routes = [
path: '/tools',
name: 'Tools',
component: Tools_home,
+ meta: {title: '小工具'},
children: [
{path: "1", component: GpaCalculator_page},
{path: "gpa", component: GpaCalculator_page},
@@ -64,10 +80,12 @@ const routes = [
}, {
path: '/about',
name: 'About',
- component: About
+ component: About,
+ meta: {title: '关于'},
}, {
path: '/account',
component: Account,
+ meta: {title: '账户'},
children: [
{path: 'self-page', component: Account_selfpage},
{path: 'works-manage', component: Account_worksmanage},
@@ -80,7 +98,8 @@ const routes = [
}, {
path: '/editor',
name: 'Editor',
- component: Editor
+ component: Editor,
+ meta: {title: '编辑器'},
},
];
@@ -105,6 +124,16 @@ router.beforeEach((to, from, next) => {
if (to.path === '/account/user-management' && !store.getters.isAdmin) {
next('/account');
}
+
+ if (to.matched.length === 0) {
+ next('/404');
+ }
+
+ const title = to.meta?.title;
+ if (title) {
+ document.title = title + ' CYBER'; // 设置页面标题
+ }
+
next();
});
diff --git a/src/style.css b/src/style.css
index 82852cd..c01c63f 100644
--- a/src/style.css
+++ b/src/style.css
@@ -74,6 +74,21 @@ code {
}
}
+.checkbox-label input {
+ width: 20px;
+ height: 20px;
+ accent-color: #007bff;
+ transition: transform 0.2s ease;
+}
+
+.checkbox-label input:checked {
+ transform: scale(1.2);
+}
+.theme-light .checkbox-label input {
+ accent-color: #ffb74d;
+ border: 2px solid #ddd;
+}
+
/*::-webkit-scrollbar {*/
/* display: none;*/
/*}*/