123456789101112131415161718192021222324252627282930313233 |
- <!DOCTYPE html>
- <html lang="zh">
- <head>
- <meta charset="UTF-8"/>
- <link rel="icon" href="/favicon.ico"/>
- <meta http-equiv="Cache-control" content="no-cache">
- <meta http-equiv="Expires" content="-1">
- <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
- <link rel="stylesheet" href="/plugins/element-plus/index.css"/>
- <link rel="stylesheet" href="/plugins/element-plus/theme-chalk/dark/css-vars.css"/>
- <link rel="stylesheet" href="/plugins/remixicon/remixicon.css"/>
- <link rel="stylesheet" href="/plugins/fonts/index.css"/>
- <link rel="stylesheet" href="/plugins/css/loading.css">
- </head>
- <body>
- <div id="app">
- <div id='loader-wrapper'>
- <div class='loader-box'>
- <span>数</span>
- <span>据</span>
- <span>分</span>
- <span>析</span>
- <span>处</span>
- <span>理</span>
- <span>工</span>
- <span>具</span>
- </div>
- <div class='loader-title'>加载中...</div>
- </div>
- </div>
- <script type="module" src="/src/main.js"></script>
- </body>
- </html>
|