admin-center 添加

This commit is contained in:
tianfeng 2025-09-05 11:45:17 +08:00
parent a0814b1493
commit 0ed0b02473
2 changed files with 48 additions and 1 deletions

View File

@ -0,0 +1,47 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Admin Center - Likei</title>
<meta name="description" content="Admin center for Likei application">
<script>
// 立即重定向到 Vue 路由
window.location.replace('/#/admin-center');
</script>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
}
.loading {
text-align: center;
}
.spinner {
border: 3px solid rgba(255, 255, 255, 0.3);
border-top: 3px solid white;
border-radius: 50%;
width: 30px;
height: 30px;
animation: spin 1s linear infinite;
margin: 0 auto 20px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
</head>
<body>
<div class="loading">
<div class="spinner"></div>
<p>Redirecting to Admin Center...</p>
</div>
</body>
</html>

View File

@ -7,7 +7,7 @@
<meta name="description" content="Agency center for Likei application">
<script>
// 立即重定向到 Vue 路由
window.location.replace('/#/agency-center');
window.location.replace('/#/bd-center');
</script>
<style>
body {