|
@@ -26,7 +26,9 @@ const handClick = () => {
|
|
|
|
|
|
const getCountDown = () => {
|
|
const getCountDown = () => {
|
|
timer.value = setTimeout(() => {
|
|
timer.value = setTimeout(() => {
|
|
- router.push({ path: '/ranking' });
|
|
|
|
|
|
+ if (router.currentRoute.value.fullPath != '/ranking') {
|
|
|
|
+ router.push({ path: '/ranking' });
|
|
|
|
+ }
|
|
}, 1000 * 60 * 15)
|
|
}, 1000 * 60 * 15)
|
|
};
|
|
};
|
|
|
|
|