admin-center 添加
This commit is contained in:
parent
a0814b1493
commit
0ed0b02473
47
public/admin-center/index.html
Normal file
47
public/admin-center/index.html
Normal 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>
|
||||
@ -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 {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user