index.html 7.2 KB

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