-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (37 loc) · 1.27 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>MindStream</title>
<!-- 引入Tailwind CSS -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/tailwindcss.js"></script>
<!-- 引入Alpine.js -->
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/cdn.min.js"></script>
</head>
<body x-data="authCheck">
<script>
function authCheck() {
return {
init() {
// 页面加载时立即执行
this.checkAuth()
},
async checkAuth() {
try {
const response = await fetch('/api/user/me')
if (response.status === 401) {
// 如果返回401,跳转到sigin.html
window.location.href = 'sigin.html';
} else {
window.location.href = 'home.html';
}
} catch(error) {
console.error("错误 检查权限时", error);
}
}
}
}
</script>
</body>
</html>