mirror of
https://github.com/ZeroCatDev/Classworks.git
synced 2025-07-05 02:59:23 +00:00
1
This commit is contained in:
parent
39c114282c
commit
66a503a062
@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "ClassworkS",
|
"name": "Classworks",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<v-footer height="40" app>
|
<v-footer height="40" app v-if="mobile">
|
||||||
<a
|
<a
|
||||||
v-for="item in items"
|
v-for="item in items"
|
||||||
:key="item.title"
|
:key="item.title"
|
||||||
@ -9,17 +9,15 @@
|
|||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
>
|
>
|
||||||
<v-icon
|
<v-icon :icon="item.icon" :size="item.icon === 'mdi-earth' ? 24 : 16" />
|
||||||
:icon="item.icon"
|
|
||||||
:size="item.icon === 'mdi-earth' ? 24 : 16"
|
|
||||||
/>
|
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
class="text-caption text-disabled"
|
class="text-caption text-disabled"
|
||||||
style="position: absolute; right: 16px;"
|
style="position: absolute; right: 16px"
|
||||||
>
|
>
|
||||||
© 2020-{{ (new Date()).getFullYear() }} <span class="d-none d-sm-inline-block">SunWuyuan</span>
|
© 2020-{{ new Date().getFullYear() }}
|
||||||
|
<span class="d-none d-sm-inline-block">SunWuyuan</span>
|
||||||
—
|
—
|
||||||
<a
|
<a
|
||||||
class="text-decoration-none on-surface"
|
class="text-decoration-none on-surface"
|
||||||
@ -27,38 +25,41 @@
|
|||||||
rel="noopener noreferrer"
|
rel="noopener noreferrer"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
>
|
>
|
||||||
ClassworkS
|
Classworks
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</v-footer>
|
</v-footer>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup>
|
<script setup>
|
||||||
const items = [
|
import { useDisplay } from "vuetify";
|
||||||
{
|
const { mobile } = useDisplay();
|
||||||
title: '孙悟远',
|
|
||||||
icon: `mdi-earth`,
|
const items = [
|
||||||
href: 'https://wuyuan.dev',
|
{
|
||||||
},
|
title: "孙悟远",
|
||||||
{
|
icon: `mdi-earth`,
|
||||||
title: 'ZeroCat',
|
href: "https://wuyuan.dev",
|
||||||
icon: 'mdi-xml',
|
},
|
||||||
href: 'https://zerocat.houlangs.com',
|
{
|
||||||
},
|
title: "ZeroCat",
|
||||||
{
|
icon: "mdi-xml",
|
||||||
title: 'GitHub',
|
href: "https://zerocat.houlangs.com",
|
||||||
icon: 'mdi-github',
|
},
|
||||||
href: 'https://github.com/sunwuyuan/classworks-frontend',
|
{
|
||||||
}
|
title: "GitHub",
|
||||||
]
|
icon: "mdi-github",
|
||||||
|
href: "https://github.com/sunwuyuan/classworks-frontend",
|
||||||
|
},
|
||||||
|
];
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped lang="sass">
|
<style scoped lang="sass">
|
||||||
.social-link :deep(.v-icon)
|
.social-link :deep(.v-icon)
|
||||||
color: rgba(var(--v-theme-on-background), var(--v-disabled-opacity))
|
color: rgba(var(--v-theme-on-background), var(--v-disabled-opacity))
|
||||||
text-decoration: none
|
text-decoration: none
|
||||||
transition: .2s ease-in-out
|
transition: .2s ease-in-out
|
||||||
|
|
||||||
&:hover
|
&:hover
|
||||||
color: rgba(25, 118, 210, 1)
|
color: rgba(25, 118, 210, 1)
|
||||||
</style>
|
</style>
|
||||||
|
@ -13,11 +13,11 @@
|
|||||||
<v-avatar size="120" class="mb-4">
|
<v-avatar size="120" class="mb-4">
|
||||||
<v-img
|
<v-img
|
||||||
src="https://avatars.githubusercontent.com/u/88357633?v=4"
|
src="https://avatars.githubusercontent.com/u/88357633?v=4"
|
||||||
alt="作者头像"
|
alt="Sunwuyuan"
|
||||||
/>
|
/>
|
||||||
</v-avatar>
|
</v-avatar>
|
||||||
|
|
||||||
<h2 class="text-h5 mb-2">ClassworkS</h2>
|
<h2 class="text-h5 mb-2">Classworks</h2>
|
||||||
<p class="text-body-1 mb-4">
|
<p class="text-body-1 mb-4">
|
||||||
由 <a
|
由 <a
|
||||||
href="https://github.com/sunwuyuan"
|
href="https://github.com/sunwuyuan"
|
||||||
|
@ -123,7 +123,29 @@
|
|||||||
</v-card>
|
</v-card>
|
||||||
</TransitionGroup>
|
</TransitionGroup>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div><v-btn
|
||||||
|
v-if="!state.synced"
|
||||||
|
color="error"
|
||||||
|
size="large"
|
||||||
|
:loading="loading.upload"
|
||||||
|
class="ml-2"
|
||||||
|
@click="manualUpload"
|
||||||
|
>
|
||||||
|
上传
|
||||||
|
</v-btn>
|
||||||
|
<v-btn v-else color="success" size="large" @click="showSyncMessage">
|
||||||
|
同步完成 </v-btn
|
||||||
|
><v-btn
|
||||||
|
v-if="showRandomButton"
|
||||||
|
color="yellow"
|
||||||
|
prepend-icon="mdi-account-question"
|
||||||
|
append-icon="mdi-dice-multiple"
|
||||||
|
size="large"
|
||||||
|
class="ml-2"
|
||||||
|
href="classisland://plugins/IslandCaller/Run"
|
||||||
|
>
|
||||||
|
随机点名
|
||||||
|
</v-btn>
|
||||||
</v-container>
|
</v-container>
|
||||||
|
|
||||||
<!-- 出勤统计区域 -->
|
<!-- 出勤统计区域 -->
|
||||||
@ -156,7 +178,7 @@
|
|||||||
>
|
>
|
||||||
{{ `${index + 1}. ${name}` }}
|
{{ `${index + 1}. ${name}` }}
|
||||||
</h3>
|
</h3>
|
||||||
<h2>迟到: {{ state.boardData.attendance.late.length }}人</h2>
|
<h2>迟到: {{ state.boardData.attendance.late.length }}<snap>人</snap></h2>
|
||||||
<h3
|
<h3
|
||||||
v-for="(name, index) in state.boardData.attendance.late"
|
v-for="(name, index) in state.boardData.attendance.late"
|
||||||
:key="'late-' + index"
|
:key="'late-' + index"
|
||||||
@ -172,31 +194,7 @@
|
|||||||
</h3>
|
</h3>
|
||||||
</v-col>
|
</v-col>
|
||||||
</div>
|
</div>
|
||||||
<v-container fluid>
|
|
||||||
<v-btn
|
|
||||||
v-if="!state.synced"
|
|
||||||
color="error"
|
|
||||||
size="large"
|
|
||||||
:loading="loading.upload"
|
|
||||||
class="ml-2"
|
|
||||||
@click="manualUpload"
|
|
||||||
>
|
|
||||||
上传
|
|
||||||
</v-btn>
|
|
||||||
<v-btn v-else color="success" size="large" @click="showSyncMessage">
|
|
||||||
同步完成 </v-btn
|
|
||||||
><v-btn
|
|
||||||
v-if="showRandomButton"
|
|
||||||
color="yellow"
|
|
||||||
prepend-icon="mdi-account-question"
|
|
||||||
append-icon="mdi-dice-multiple"
|
|
||||||
size="large"
|
|
||||||
class="ml-2"
|
|
||||||
href="classisland://plugins/IslandCaller/Run"
|
|
||||||
>
|
|
||||||
随机点名
|
|
||||||
</v-btn>
|
|
||||||
</v-container>
|
|
||||||
<v-dialog
|
<v-dialog
|
||||||
v-model="state.dialogVisible"
|
v-model="state.dialogVisible"
|
||||||
width="500"
|
width="500"
|
||||||
|
@ -46,7 +46,7 @@
|
|||||||
|
|
||||||
/* 确保容器高度不超过视口 */
|
/* 确保容器高度不超过视口 */
|
||||||
.main-window {
|
.main-window {
|
||||||
max-height: calc(100vh - 180px);
|
max-height: calc(100vh - 80px);
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user