chore: 简单的关于

This commit is contained in:
MKStoler 2024-10-09 12:04:15 +08:00
parent c7f62b8a84
commit 567c3cd7b5
5 changed files with 41 additions and 21 deletions

View File

@ -86,7 +86,7 @@
### 开发进度
- `main`分支上保留原作者`0.1.0`版本;
- 正在`main`分支上维护`1.1.0`版本。
- 正在`dev`分支上开发`1.1-Malkuth`版本。
### Project Setup

View File

@ -5,6 +5,7 @@
<template #append>
<div class="ga-4">
<v-btn @click="router.push('/mainWindow')">回到主页</v-btn>
<v-btn @click="router.push('/about')">关于</v-btn>
<v-icon icon="mdi-window-close" @click="ipcHandleExit"></v-icon>
</div>
</template>

View File

@ -0,0 +1,38 @@
<template>
<v-container class="main-container" fill-height>
<v-row justify="center" align="center">
<v-col cols="12" md="8">
<v-card class="pa-4" outlined>
<v-card-title class="text-h4">关于考试展板</v-card-title>
<v-card-text>
<p>
欢迎来到考试展板应用程序这是一个用于展示考试信息的工具帮助考生更好地了解考试安排和状态
</p>
<p>本应用程序旨在为考生提供便捷的考试信息查看体验</p>
<p>版本号 1.1.0-Malkuth</p>
</v-card-text>
</v-card>
</v-col>
</v-row>
</v-container>
</template>
<style scoped>
.main-container {
padding: 20px;
display: flex;
align-items: center;
}
.v-card {
width: 100%;
max-width: 600px;
margin: auto;
transition: transform 0.3s ease-in-out;
}
.v-card:hover {
transform: scale(1.05);
}
.v-btn {
height: 48px;
}
</style>

View File

@ -1,19 +0,0 @@
<template>
<div>
<h1>测试页面</h1>
<ExamStatus
:exam="{
name: '语文',
start: '2024-07-25T08:54:52.717Z',
end: '2024-07-25T08:55:40.428Z'
}"
/>
</div>
</template>
<script setup>
import { useRouter } from 'vue-router';
const router = useRouter();
//
</script>

View File

@ -4,7 +4,7 @@ import { defineStore } from 'pinia';
export const useProfileStore = defineStore('app', {
state: () => ({
examName: '考试名称',
appHeader: 'DSZ考试看板',
appHeader: '考试看板',
message: '考试提醒信息',
examInfos: []
}),