123456789101112131415161718192021222324252627282930313233343536 |
- <!DOCTYPE html>
- <html lang="">
- <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.ico">
- <link rel="stylesheet" href="//at.alicdn.com/t/c/font_3820309_72smvqef5rb.css">
- <title><%= htmlWebpackPlugin.options.title %></title>
- <style>
- html, body, #app { height: 100vh; margin: 0px; padding: 0px; width: 100%;overflow: hidden; }
- .xq-home { background-color: #303133; height: 100%; display: flex; flex-direction: column; }
- .xq-home__main { user-select: none; width: 100%; flex-grow: 1; display: flex; justify-content: center; align-items: center; flex-direction: column; }
- .xq-home__footer { width: 100%; flex-grow: 0; text-align: center; padding: 1em 0; }
- .xq-home__footer > a { font-size: 12px; color: #ABABAB; text-decoration: none; }
- .xq-home__loading { height: 32px; width: 32px; margin-bottom: 20px; }
- .xq-home__text {color: #fff;font-size: 16px;}
- </style>
- </head>
- <body>
- <noscript>
- <strong>We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
- </noscript>
- <div id="app">
- <div class="xq-home">
- <div class="xq-home__main">
- <img class="xq-home__loading" src="./image/loading/loading-spin.svg" alt="loading">
- <span class="xq-home__text">数据载入中...</span>
- </div>
- </div>
- </div>
- <!-- built files will be auto injected -->
- </body>
- <script src="https://gosspublic.alicdn.com/aliyun-oss-sdk-6.3.1.min.js" async></script>
- <script src="https://cdnjs.cloudflare.com/ajax/libs/pdf.js/3.10.111/pdf.min.js" async></script>
- </html>
|