2024-08-22 11:48:33 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="zh-CN">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<link rel="icon" href="/favicon.ico" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
2024-11-04 16:27:12 +08:00
|
|
|
<link rel="stylesheet" type="text/css" media="print" href="/admin/print-lock.css">
|
2024-08-22 11:48:33 +08:00
|
|
|
<title>后台管理系统</title>
|
|
|
|
<style>
|
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.preload {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
height: 100vh;
|
|
|
|
width: 100vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
.circular {
|
|
|
|
height: 42px;
|
|
|
|
width: 42px;
|
|
|
|
animation: loading-rotate 2s linear infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
.circular .path {
|
|
|
|
animation: loading-dash 1.5s ease-in-out infinite;
|
|
|
|
stroke-dasharray: 90, 150;
|
|
|
|
stroke-dashoffset: 0;
|
|
|
|
stroke-width: 2;
|
|
|
|
stroke: #4073fa;
|
|
|
|
stroke-linecap: round;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes loading-rotate {
|
|
|
|
100% {
|
|
|
|
transform: rotate(1turn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes loading-dash {
|
|
|
|
|
|
|
|
0% {
|
|
|
|
stroke-dasharray: 90, 150;
|
|
|
|
stroke-dashoffset: -40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
stroke-dasharray: 90, 150;
|
|
|
|
stroke-dashoffset: -120px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|
2024-11-15 19:58:31 +08:00
|
|
|
<script type="module" crossorigin src="/admin/assets/index.689cfa31.js"></script>
|
|
|
|
<link rel="modulepreload" crossorigin href="/admin/assets/.pnpm.1b0299fb.js">
|
|
|
|
<link rel="modulepreload" crossorigin href="/admin/assets/@vueuse.72d44d91.js">
|
|
|
|
<link rel="modulepreload" crossorigin href="/admin/assets/lodash.c3b66c05.js">
|
|
|
|
<link rel="modulepreload" crossorigin href="/admin/assets/@vue.9d708d7c.js">
|
|
|
|
<link rel="stylesheet" href="/admin/assets/.pnpm.063ab7cc.css">
|
|
|
|
<link rel="stylesheet" href="/admin/assets/index.78741dbc.css">
|
2024-08-22 11:48:33 +08:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="app">
|
|
|
|
<div class="preload">
|
|
|
|
<svg viewBox="25 25 50 50" class="circular">
|
|
|
|
<circle cx="50" cy="50" r="20" fill="none" class="path"></circle>
|
|
|
|
</svg>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|