index.html 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. <!DOCTYPE html>
  2. <html lang="en" id="htmlRoot">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  6. <meta name="renderer" content="webkit" />
  7. <meta name="keywords" content="空间数据管理平台" />
  8. <meta name="description" content="空间数据管理平台" />
  9. <meta http-equiv="Expires" content="0" />
  10. <meta http-equiv="Cache-control" content="no-cache" />
  11. <meta http-equiv="Cache" content="no-cache" />
  12. <meta name="viewport"
  13. content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=0" />
  14. <title>空间数据管理平台</title>
  15. <link rel="icon" href="/favicon.ico" />
  16. <style>
  17. #account:-webkit-autofill {
  18. -webkit-text-fill-color: white !important;
  19. background: transparent;
  20. box-shadow: 10px 10px 10px 10px rgba(176, 122, 122, 0) !important;
  21. }
  22. #password:-webkit-autofill {
  23. -webkit-text-fill-color: white !important;
  24. background: transparent;
  25. box-shadow: 10px 10px 10px 10px rgba(176, 122, 122, 0) !important;
  26. }
  27. li[data-menu-id^="/systemAdmin/system"] {
  28. width: 1px;
  29. padding: 0px !important;
  30. margin: 0px !important;
  31. opacity: 0 !important;
  32. }
  33. .vben-layout-menu-logo img {
  34. width: 22px !important;
  35. opacity: 0 !important;
  36. }
  37. .ant-menu-horizontal:not(.ant-menu-dark)>.ant-menu-item-selected {
  38. background: linear-gradient(157deg, #D6F5FF -4%, #FFFFFF 81%);
  39. color: #fff !important;
  40. height: 34px;
  41. border-radius: 35px;
  42. line-height: 35px;
  43. }
  44. .vben-basic-menu__sidebar-hor.ant-menu-horizontal.ant-menu-dark .ant-menu-item:hover {
  45. height: 34px;
  46. border-radius: 35px;
  47. line-height: 35px;
  48. }
  49. .vben-basic-menu__sidebar-hor.ant-menu-horizontal.ant-menu-dark .ant-menu-item-selected {
  50. background: linear-gradient(157deg, #D6F5FF -4%, #FFFFFF 81%);
  51. height: 34px;
  52. border-radius: 35px;
  53. color: #0671DD !important;
  54. line-height: 35px;
  55. }
  56. .ant-menu-dark .ant-menu-item-selected .anticon {
  57. color: #0671DD !important;
  58. }
  59. ul li.vben-menu-item-active:not(.vben-menu-submenu) {
  60. background: url("./static/img/menuBg.jpg")no-repeat;
  61. background-size: 170px 50px;
  62. color: #377dff !important;
  63. }
  64. header.ant-layout-header {
  65. padding-right: 20px;
  66. }
  67. .vben-default-layout-main {
  68. margin-left: 0px !important;
  69. }
  70. .ztree-container span.ant-tree-icon__customize {
  71. display: none !important;
  72. }
  73. .vben-menu-dark.vben-menu-vertical .vben-simple-menu__children,
  74. .vben-menu-dark.vben-menu-popup .vben-simple-menu__children {
  75. background-color: var(--sider-dark-bg-color) !important;
  76. }
  77. </style>
  78. </head>
  79. <body>
  80. <script>
  81. (() => {
  82. var htmlRoot = document.getElementById('htmlRoot');
  83. var theme = window.localStorage.getItem('__APP__DARK__MODE__');
  84. if (htmlRoot && theme) {
  85. htmlRoot.setAttribute('data-theme', theme);
  86. theme = htmlRoot = null;
  87. }
  88. })();
  89. </script>
  90. <div id="app">
  91. <style>
  92. .vben-layout-menu-logo img {
  93. width: 22px !important;
  94. opacity: 0 !important;
  95. }
  96. html[data-theme='dark'] .app-loading {
  97. background-color: #2c344a;
  98. }
  99. html[data-theme='dark'] .app-loading .app-loading-title {
  100. color: rgba(255, 255, 255, 0.85);
  101. }
  102. .app-loading {
  103. display: flex;
  104. width: 100%;
  105. height: 100%;
  106. justify-content: center;
  107. align-items: center;
  108. flex-direction: column;
  109. background-color: #f4f7f9;
  110. }
  111. .app-loading .app-loading-wrap {
  112. position: absolute;
  113. top: 50%;
  114. left: 50%;
  115. display: flex;
  116. -webkit-transform: translate3d(-50%, -50%, 0);
  117. transform: translate3d(-50%, -50%, 0);
  118. justify-content: center;
  119. align-items: center;
  120. flex-direction: column;
  121. }
  122. .app-loading .dots {
  123. display: flex;
  124. padding: 98px;
  125. justify-content: center;
  126. align-items: center;
  127. }
  128. .app-loading .app-loading-title {
  129. display: flex;
  130. margin-top: 30px;
  131. font-size: 30px;
  132. color: rgba(0, 0, 0, 0.85);
  133. justify-content: center;
  134. align-items: center;
  135. }
  136. .app-loading .app-loading-logo {
  137. display: block;
  138. width: 90px;
  139. margin: 0 auto;
  140. margin-bottom: 20px;
  141. }
  142. .dot {
  143. position: relative;
  144. display: inline-block;
  145. width: 48px;
  146. height: 48px;
  147. margin-top: 30px;
  148. font-size: 32px;
  149. transform: rotate(45deg);
  150. box-sizing: border-box;
  151. animation: antRotate 1.2s infinite linear;
  152. }
  153. .dot i {
  154. position: absolute;
  155. display: block;
  156. width: 20px;
  157. height: 20px;
  158. background-color: #0065cc;
  159. border-radius: 100%;
  160. opacity: 0.3;
  161. transform: scale(0.75);
  162. animation: antSpinMove 1s infinite linear alternate;
  163. transform-origin: 50% 50%;
  164. }
  165. .dot i:nth-child(1) {
  166. top: 0;
  167. left: 0;
  168. }
  169. .dot i:nth-child(2) {
  170. top: 0;
  171. right: 0;
  172. -webkit-animation-delay: 0.4s;
  173. animation-delay: 0.4s;
  174. }
  175. .dot i:nth-child(3) {
  176. right: 0;
  177. bottom: 0;
  178. -webkit-animation-delay: 0.8s;
  179. animation-delay: 0.8s;
  180. }
  181. .dot i:nth-child(4) {
  182. bottom: 0;
  183. left: 0;
  184. -webkit-animation-delay: 1.2s;
  185. animation-delay: 1.2s;
  186. }
  187. @keyframes antRotate {
  188. to {
  189. -webkit-transform: rotate(405deg);
  190. transform: rotate(405deg);
  191. }
  192. }
  193. @-webkit-keyframes antRotate {
  194. to {
  195. -webkit-transform: rotate(405deg);
  196. transform: rotate(405deg);
  197. }
  198. }
  199. @keyframes antSpinMove {
  200. to {
  201. opacity: 1;
  202. }
  203. }
  204. @-webkit-keyframes antSpinMove {
  205. to {
  206. opacity: 1;
  207. }
  208. }
  209. </style>
  210. </div>
  211. <script type="module" src="/src/main.ts"></script>
  212. </body>
  213. </html>