| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <!DOCTYPE html>
- <html lang="zh-Hans">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width,initial-scale=1.0">
- <link rel="icon" href="<%= BASE_URL %>favicon.png">
- <script src="<%= BASE_URL %>fontawesome-v5.13.0.js"></script>
- <title>管理后台</title>
- <style>
- @keyframes loading-dot{
- 0%{
- content:"";
- }
- 30%{
- content:".";
- }
- 60%{
- content:"..";
- }
- 90%{
- content:"...";
- }
- }
- @keyframes loading-round{
- from{
- transform:rotate(0deg);
- }
- to{
- transform:rotate(360deg);
- }
- }
- .loading-text{
- text-align: center;
- width:200px;
- }
- .loading-text:after{
- content:"...";
- animation:loading-dot 1s infinite;
- }
- .loading-img{
- display:inline-block;
- animation:loading-round 1s linear infinite;
-
- }
- </style>
- </head>
- <body>
- <noscript>
- <strong>We're sorry but vue doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
- </noscript>
- <div id="app">
-
- <div style="display:flex;justify-content: center;text-align:center;">
- <div style="margin-top:300px;padding:30px;border:solid 1px #ccc;border-radius:6px;" >
- <img src="<%=BASE_URL%>loading.gif" style="width:100px;max-height:100%;" />
- <div class="loading-text"><span class="loading-img">★</span>正在加载数据</div>
- </div>
-
- </div>
- </div>
- <!-- built files will be auto injected -->
- </body>
- </html>
|