保存进度!

This commit is contained in:
Kane Wang 2023-02-17 18:34:10 +08:00
parent 253fc25489
commit a561bc0eaa
3 changed files with 18 additions and 6 deletions

View File

@ -2,7 +2,7 @@
* @Author: Kane * @Author: Kane
* @Date: 2023-02-15 09:25:52 * @Date: 2023-02-15 09:25:52
* @LastEditors: Kane * @LastEditors: Kane
* @LastEditTime: 2023-02-15 14:40:33 * @LastEditTime: 2023-02-17 11:26:21
* @FilePath: /task_schedule/src/App.vue * @FilePath: /task_schedule/src/App.vue
* @Description: * @Description:
* *
@ -49,7 +49,7 @@ export default {
setInterval(() => setInterval(() =>
{ {
location.reload(); location.reload();
}, 60000); }, 5000);
return { locale, ui, onCount }; return { locale, ui, onCount };
}, },
@ -69,8 +69,12 @@ export default {
.counter_wrapper { .counter_wrapper {
width: 500px; width: 500px;
margin-top: 20px;
margin-left: auto; margin-left: auto;
margin-right: 20px; margin-right: 20px;
border-radius: 5px;
background-color: rgb(250 250 250 / 75%);
} }
.counter_wrapper:hover { .counter_wrapper:hover {

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.9 MiB

View File

@ -1,11 +1,19 @@
html { html {
background-color: #8796a6; /* background-color: #8796a6; */
background-image: url("./assets/img/bg/bg_01.jpg");
background-attachment: fixed;
background-size: contain;
/* background-position: center; */
/* background-repeat: no-repeat; */
} }
body { body {
background-color: #8796a6; /* background-color: #8796a6; */
width: calc(100vw - 20px); width: 100vw;
height: calc(100vh - 60px); height: 100vh;
/* border: 1px solid red; */ /* border: 1px solid red; */
/* overflow: hidden; */
padding: 0px;
margin: 0px;
} }