document.ejs 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta
  7. name="keywords"
  8. content="antd,umi,umijs,ant design,Scaffolding, layout, Ant Design, project, Pro, admin, jetlinks"
  9. />
  10. <meta name="description" content="Jetlinks" />
  11. <meta
  12. name="viewport"
  13. content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"
  14. />
  15. <title>Jetlinks</title>
  16. <link
  17. rel="icon"
  18. id="ico"
  19. href="<%= context.config.publicPath + 'favicon.ico' %>"
  20. type="image/x-icon"
  21. />
  22. </head>
  23. <body>
  24. <noscript>
  25. <div class="noscript-container">
  26. Hi there! Please
  27. <div class="noscript-enableJS">
  28. <a href="https://www.enablejavascript.io/en" target="_blank" rel="noopener noreferrer">
  29. <b>enable Javascript</b>
  30. </a>
  31. </div>
  32. in your browser to use Ant Design, Out-of-the-box mid-stage front/design solution!
  33. </div>
  34. </noscript>
  35. <div id="root">
  36. <style>
  37. html,
  38. body,
  39. #root {
  40. height: 100%;
  41. margin: 0;
  42. padding: 0;
  43. }
  44. #root {
  45. background-repeat: no-repeat;
  46. background-size: 100% auto;
  47. }
  48. .noscript-container {
  49. display: flex;
  50. align-content: center;
  51. justify-content: center;
  52. margin-top: 90px;
  53. font-size: 20px;
  54. font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode',
  55. Geneva, Verdana, sans-serif;
  56. }
  57. .noscript-enableJS {
  58. padding-right: 3px;
  59. padding-left: 3px;
  60. }
  61. .page-loading-warp {
  62. display: flex;
  63. align-items: center;
  64. justify-content: center;
  65. padding: 8px;
  66. }
  67. .ant-spin {
  68. position: absolute;
  69. display: none;
  70. -webkit-box-sizing: border-box;
  71. box-sizing: border-box;
  72. margin: 0;
  73. padding: 0;
  74. color: rgba(0, 0, 0, 0.65);
  75. color: #1890ff;
  76. font-size: 14px;
  77. font-variant: tabular-nums;
  78. line-height: 1.5;
  79. text-align: center;
  80. list-style: none;
  81. opacity: 0;
  82. -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  83. transition: -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  84. transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  85. transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86),
  86. -webkit-transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  87. -webkit-font-feature-settings: 'tnum';
  88. font-feature-settings: 'tnum';
  89. }
  90. .ant-spin-spinning {
  91. position: static;
  92. display: inline-block;
  93. opacity: 1;
  94. }
  95. .ant-spin-dot {
  96. position: relative;
  97. display: inline-block;
  98. width: 20px;
  99. height: 20px;
  100. font-size: 20px;
  101. }
  102. .ant-spin-dot-item {
  103. position: absolute;
  104. display: block;
  105. width: 9px;
  106. height: 9px;
  107. background-color: #1890ff;
  108. border-radius: 100%;
  109. -webkit-transform: scale(0.75);
  110. -ms-transform: scale(0.75);
  111. transform: scale(0.75);
  112. -webkit-transform-origin: 50% 50%;
  113. -ms-transform-origin: 50% 50%;
  114. transform-origin: 50% 50%;
  115. opacity: 0.3;
  116. -webkit-animation: antspinmove 1s infinite linear alternate;
  117. animation: antSpinMove 1s infinite linear alternate;
  118. }
  119. .ant-spin-dot-item:nth-child(1) {
  120. top: 0;
  121. left: 0;
  122. }
  123. .ant-spin-dot-item:nth-child(2) {
  124. top: 0;
  125. right: 0;
  126. -webkit-animation-delay: 0.4s;
  127. animation-delay: 0.4s;
  128. }
  129. .ant-spin-dot-item:nth-child(3) {
  130. right: 0;
  131. bottom: 0;
  132. -webkit-animation-delay: 0.8s;
  133. animation-delay: 0.8s;
  134. }
  135. .ant-spin-dot-item:nth-child(4) {
  136. bottom: 0;
  137. left: 0;
  138. -webkit-animation-delay: 1.2s;
  139. animation-delay: 1.2s;
  140. }
  141. .ant-spin-dot-spin {
  142. -webkit-transform: rotate(45deg);
  143. -ms-transform: rotate(45deg);
  144. transform: rotate(45deg);
  145. -webkit-animation: antrotate 1.2s infinite linear;
  146. animation: antRotate 1.2s infinite linear;
  147. }
  148. .ant-spin-lg .ant-spin-dot {
  149. width: 32px;
  150. height: 32px;
  151. font-size: 32px;
  152. }
  153. .ant-spin-lg .ant-spin-dot i {
  154. width: 14px;
  155. height: 14px;
  156. }
  157. @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  158. .ant-spin-blur {
  159. background: #fff;
  160. opacity: 0.5;
  161. }
  162. }
  163. @-webkit-keyframes antSpinMove {
  164. to {
  165. opacity: 1;
  166. }
  167. }
  168. @keyframes antSpinMove {
  169. to {
  170. opacity: 1;
  171. }
  172. }
  173. @-webkit-keyframes antRotate {
  174. to {
  175. -webkit-transform: rotate(405deg);
  176. transform: rotate(405deg);
  177. }
  178. }
  179. @keyframes antRotate {
  180. to {
  181. -webkit-transform: rotate(405deg);
  182. transform: rotate(405deg);
  183. }
  184. }
  185. </style>
  186. <div
  187. style="
  188. display: flex;
  189. flex-direction: column;
  190. align-items: center;
  191. justify-content: center;
  192. height: 100%;
  193. min-height: 420px;
  194. "
  195. >
  196. <!-- <img src="<%= context.config.publicPath + 'pro_icon.svg' %>" alt="logo" width="256"/>-->
  197. <!-- <div style="font-size: xx-large">数据加载中...</div>-->
  198. <div class="page-loading-warp">
  199. <div class="ant-spin ant-spin-lg ant-spin-spinning">
  200. <span class="ant-spin-dot ant-spin-dot-spin"
  201. ><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i
  202. ><i class="ant-spin-dot-item"></i><i class="ant-spin-dot-item"></i
  203. ></span>
  204. </div>
  205. </div>
  206. <div style="display: flex; align-items: center; justify-content: center">
  207. <!-- <img
  208. src="<%= context.config.publicPath + 'logo.svg' %>"
  209. width="200"
  210. style="margin-right: 8px"
  211. /> -->
  212. </div>
  213. </div>
  214. </div>
  215. </body>
  216. </html>