12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- <!--
- * @Author: PoJun
- * @Date: 2023-05-29 16:07:21
- * @LastEditors: PoJun
- * @LastEditTime: 2023-05-31 16:52:08
- * @Message: Nothing
- -->
- <!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" />
- <title><%= process.env.VUE_APP_SYSTEM_NAME %></title>
- <style type="text/css">
- #pageInitLoading {
- top: 50%;
- left: 50%;
- position: absolute;
- -webkit-transform: translateY(-50%) translateX(-50%);
- transform: translateY(-50%) translateX(-50%);
- z-index: 100;
- }
- @-webkit-keyframes ball-beat {
- 50% {
- opacity: 0.2;
- -webkit-transform: scale(0.75);
- transform: scale(0.75);
- }
- 100% {
- opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
- }
- @keyframes ball-beat {
- 50% {
- opacity: 0.2;
- -webkit-transform: scale(0.75);
- transform: scale(0.75);
- }
- 100% {
- opacity: 1;
- -webkit-transform: scale(1);
- transform: scale(1);
- }
- }
- .ball-beat > div {
- background-color: #4080ff;
- width: 15px;
- height: 15px;
- border-radius: 100% !important;
- margin: 2px;
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
- display: inline-block;
- -webkit-animation: ball-beat 0.7s 0s infinite linear;
- animation: ball-beat 0.7s 0s infinite linear;
- }
- .ball-beat > div:nth-child(2n-1) {
- -webkit-animation-delay: 0.35s !important;
- animation-delay: 0.35s !important;
- }
- </style>
- </head>
- <body>
- <noscript>
- <strong>
- We're sorry but <%= process.env.VUE_APP_CUR_PROJECT_ENV %> doesn't work properly without JavaScript
- enabled. Please enable it to continue.
- </strong>
- </noscript>
- <div id="pageInitLoading">
- <div class="loader-inner ball-beat">
- <div></div>
- <div></div>
- <div></div>
- </div>
- </div>
- <div id="app"></div>
- <!-- built files will be auto injected -->
- </body>
- </html>
|