index.html 6.7 KB

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