Compare commits

...

2 Commits

Author SHA1 Message Date
unknown 631ee1170d 保存进度! 2023-05-29 00:30:38 +08:00
unknown 3bc20dea6c 保存进度! 2023-05-29 00:15:18 +08:00
3 changed files with 1744 additions and 278 deletions

File diff suppressed because it is too large Load Diff

View File

@ -16,6 +16,7 @@
"echarts": "^5.4.2", "echarts": "^5.4.2",
"element-plus": "^2.3.5", "element-plus": "^2.3.5",
"moment": "^2.29.4", "moment": "^2.29.4",
"sass-loader": "^13.3.1",
"vue": "^3.3.4", "vue": "^3.3.4",
"vue-router": "^4.2.1", "vue-router": "^4.2.1",
"vuex": "^4.1.0" "vuex": "^4.1.0"
@ -29,7 +30,9 @@
"eslint-config-recommended": "^4.1.0", "eslint-config-recommended": "^4.1.0",
"eslint-config-standard-with-typescript": "^34.0.1", "eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-vue": "^9.14.1", "eslint-plugin-vue": "^9.14.1",
"node-sass": "^9.0.0",
"sass": "^1.62.1", "sass": "^1.62.1",
"style-loader": "^3.3.3",
"typescript": "^5.0.4", "typescript": "^5.0.4",
"vue-eslint-parser": "^9.3.0" "vue-eslint-parser": "^9.3.0"
} }

View File

@ -8,13 +8,11 @@
* Copyright (c) ${2022} by Kane, All Rights Reserved. * Copyright (c) ${2022} by Kane, All Rights Reserved.
--> -->
<template> <template>
<div
tabindex="0"
@keyup.esc="logoutDesktopArchievement()"
>
<div <div
v-if="ui.showUI" v-if="ui.showUI"
class="view-wrapper" class="view-wrapper"
tabindex="0"
@keyup.esc="logoutDesktopArchievement()"
> >
<div class="center-wrapper"> <div class="center-wrapper">
<span class="slogan">对标先进&nbsp;比学赶超</span> <span class="slogan">对标先进&nbsp;比学赶超</span>
@ -55,7 +53,6 @@
</div> </div>
<div class="right-wrapper" /> <div class="right-wrapper" />
</div> </div>
</div>
</template> </template>
<script lang="ts"> <script lang="ts">
@ -167,7 +164,7 @@ export default {
onBeforeMount(() => onBeforeMount(() =>
{ {
// 10 // 10
timerHandler = setInterval( refresh, 5000 ); // timerHandler = setInterval( refresh, 5000 );
refresh(); refresh();
}); });
@ -192,7 +189,7 @@ export default {
width: 100vw; width: 100vw;
padding: 5mm; padding: 5mm;
display: flex; display: flex;
justify-content: end; justify-content: flex-end;
align-items: stretch; align-items: stretch;
} }