保存进度!

This commit is contained in:
Kane Wang 2023-06-08 18:08:57 +08:00
parent 664c2335ca
commit 80e4b24e4f
3 changed files with 7 additions and 7 deletions

View File

@ -30,7 +30,7 @@
"eslint-config-standard-with-typescript": "^35.0.0", "eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-vue": "^9.14.1", "eslint-plugin-vue": "^9.14.1",
"node-sass": "^9.0.0", "node-sass": "^9.0.0",
"sass": "^1.62.1", "sass": "^1.63.2",
"style-loader": "^3.3.3", "style-loader": "^3.3.3",
"typescript": "^5.1.3", "typescript": "^5.1.3",
"vue-eslint-parser": "^9.3.0" "vue-eslint-parser": "^9.3.0"
@ -12242,9 +12242,9 @@
"dev": true "dev": true
}, },
"node_modules/sass": { "node_modules/sass": {
"version": "1.62.1", "version": "1.63.2",
"resolved": "https://registry.npmmirror.com/sass/-/sass-1.62.1.tgz", "resolved": "https://registry.npmmirror.com/sass/-/sass-1.63.2.tgz",
"integrity": "sha512-NHpxIzN29MXvWiuswfc1W3I0N8SXBd8UR26WntmDlRYf0bSADnwnOjsyMZ3lMezSlArD33Vs3YFhp7dWvL770A==", "integrity": "sha512-u56TU0AIFqMtauKl/OJ1AeFsXqRHkgO7nCWmHaDwfxDo9GUMSqBA4NEh6GMuh1CYVM7zuROYtZrHzPc2ixK+ww==",
"devOptional": true, "devOptional": true,
"dependencies": { "dependencies": {
"chokidar": ">=3.0.0 <4.0.0", "chokidar": ">=3.0.0 <4.0.0",

View File

@ -31,7 +31,7 @@
"eslint-config-standard-with-typescript": "^35.0.0", "eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-vue": "^9.14.1", "eslint-plugin-vue": "^9.14.1",
"node-sass": "^9.0.0", "node-sass": "^9.0.0",
"sass": "^1.62.1", "sass": "^1.63.2",
"style-loader": "^3.3.3", "style-loader": "^3.3.3",
"typescript": "^5.1.3", "typescript": "^5.1.3",
"vue-eslint-parser": "^9.3.0" "vue-eslint-parser": "^9.3.0"

View File

@ -118,7 +118,7 @@ export default {
attachingRankingList: [], // attachingRankingList: [], //
renewalRankingList: [], // renewalRankingList: [], //
}); });
const timerHandler = 0; let timerHandler = 0;
const getTotalArchievement = computed(() => const getTotalArchievement = computed(() =>
{ {
@ -214,7 +214,7 @@ export default {
onBeforeMount(() => onBeforeMount(() =>
{ {
// 10 // 10
// timerHandler = setInterval( refresh, 5000 ); timerHandler = setInterval( refresh, 5000 );
refresh(); refresh();
}); });