mirror of
https://hub.gitmirror.com/https://github.com/ExamAware/ExamShowboard-Legacy.git
synced 2025-04-29 07:56:33 +00:00
chore: 简单的关于
This commit is contained in:
parent
c7f62b8a84
commit
567c3cd7b5
@ -86,7 +86,7 @@
|
|||||||
|
|
||||||
### 开发进度
|
### 开发进度
|
||||||
|
|
||||||
- 在`main`分支上保留原作者`0.1.0`版本;
|
- 正在`main`分支上维护`1.1.0`版本。
|
||||||
- 正在`dev`分支上开发`1.1-Malkuth`版本。
|
- 正在`dev`分支上开发`1.1-Malkuth`版本。
|
||||||
|
|
||||||
### Project Setup
|
### Project Setup
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
<template #append>
|
<template #append>
|
||||||
<div class="ga-4">
|
<div class="ga-4">
|
||||||
<v-btn @click="router.push('/mainWindow')">回到主页</v-btn>
|
<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>
|
<v-icon icon="mdi-window-close" @click="ipcHandleExit"></v-icon>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
38
src/renderer/src/pages/about.vue
Normal file
38
src/renderer/src/pages/about.vue
Normal 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>
|
@ -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>
|
|
@ -4,7 +4,7 @@ import { defineStore } from 'pinia';
|
|||||||
export const useProfileStore = defineStore('app', {
|
export const useProfileStore = defineStore('app', {
|
||||||
state: () => ({
|
state: () => ({
|
||||||
examName: '考试名称',
|
examName: '考试名称',
|
||||||
appHeader: 'DSZ考试看板',
|
appHeader: '考试看板',
|
||||||
message: '考试提醒信息',
|
message: '考试提醒信息',
|
||||||
examInfos: []
|
examInfos: []
|
||||||
}),
|
}),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user