feat: 新增显示签到记录

This commit is contained in:
陈淳
2024-01-15 15:28:32 +08:00
parent 40195ea993
commit a06c8c00b3
7 changed files with 142 additions and 17 deletions

View File

@@ -86,7 +86,7 @@ import useAuths from "@/hooks/useAuths";
import { Session } from "@/utils/storage";
import signalR from "@/utils/signalR";
const { getToken, clearStorage } = useAuths();
const { isLogin, clearStorage } = useAuths();
const configStore = useConfigStore();
const router = useRouter();
const route = useRoute();
@@ -130,8 +130,6 @@ const search = () => {
router.push(routerPer);
};
const isLogin = getToken("AccessToken") ? true : false;
const handleGitClick = () => {
window.open("https://gitee.com/ccnetcore/Yi");
};