index.html 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. <!--
  2. * @Author: zouwenying
  3. * @Date: 2020-10-21 18:14:35
  4. * @LastEditTime: 2021-04-09 11:05:31
  5. * @LastEditors: zwy
  6. * @Description: In User Settings Edit
  7. * @FilePath: \vue-manage-system-master\public\index.html
  8. -->
  9. <!DOCTYPE html>
  10. <html lang="en">
  11. <head>
  12. <meta charset="utf-8">
  13. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  14. <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no">
  15. <link rel="icon" href="<%= BASE_URL %>favicon.ico" type="image/x-icon" />
  16. <link rel="stylesheet" href="//at.alicdn.com/t/font_2251662_6zkesvj5bwe.css">
  17. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  18. <meta name="viewport" content="initial-scale=1.0, user-scalable=no, width=device-width">
  19. <meta http-equiv="pragram" content="no-cache">
  20. <meta http-equiv="cache-control" content="no-cache, no-store, must-revalidate">
  21. <meta http-equiv="expires" content="0">
  22. <title>智慧社区管理平台</title>
  23. <style>
  24. #loader-wrapper {
  25. position: fixed;
  26. top: 0;
  27. left: 0;
  28. width: 100%;
  29. height: 100%;
  30. z-index: 999999;
  31. }
  32. #loader {
  33. display: block;
  34. position: relative;
  35. left: 50%;
  36. top: 50%;
  37. width: 150px;
  38. height: 150px;
  39. margin: -75px 0 0 -75px;
  40. border-radius: 50%;
  41. border: 3px solid transparent;
  42. border-top-color: #FFF;
  43. -webkit-animation: spin 2s linear infinite;
  44. -ms-animation: spin 2s linear infinite;
  45. -moz-animation: spin 2s linear infinite;
  46. -o-animation: spin 2s linear infinite;
  47. animation: spin 2s linear infinite;
  48. z-index: 1001;
  49. }
  50. #loader:before {
  51. content: "";
  52. position: absolute;
  53. top: 5px;
  54. left: 5px;
  55. right: 5px;
  56. bottom: 5px;
  57. border-radius: 50%;
  58. border: 3px solid transparent;
  59. border-top-color: #FFF;
  60. -webkit-animation: spin 3s linear infinite;
  61. -moz-animation: spin 3s linear infinite;
  62. -o-animation: spin 3s linear infinite;
  63. -ms-animation: spin 3s linear infinite;
  64. animation: spin 3s linear infinite;
  65. }
  66. #loader:after {
  67. content: "";
  68. position: absolute;
  69. top: 15px;
  70. left: 15px;
  71. right: 15px;
  72. bottom: 15px;
  73. border-radius: 50%;
  74. border: 3px solid transparent;
  75. border-top-color: #FFF;
  76. -moz-animation: spin 1.5s linear infinite;
  77. -o-animation: spin 1.5s linear infinite;
  78. -ms-animation: spin 1.5s linear infinite;
  79. -webkit-animation: spin 1.5s linear infinite;
  80. animation: spin 1.5s linear infinite;
  81. }
  82. @-webkit-keyframes spin {
  83. 0% {
  84. -webkit-transform: rotate(0deg);
  85. -ms-transform: rotate(0deg);
  86. transform: rotate(0deg);
  87. }
  88. 100% {
  89. -webkit-transform: rotate(360deg);
  90. -ms-transform: rotate(360deg);
  91. transform: rotate(360deg);
  92. }
  93. }
  94. @keyframes spin {
  95. 0% {
  96. -webkit-transform: rotate(0deg);
  97. -ms-transform: rotate(0deg);
  98. transform: rotate(0deg);
  99. }
  100. 100% {
  101. -webkit-transform: rotate(360deg);
  102. -ms-transform: rotate(360deg);
  103. transform: rotate(360deg);
  104. }
  105. }
  106. #loader-wrapper .loader-section {
  107. position: fixed;
  108. top: 0;
  109. width: 51%;
  110. height: 100%;
  111. background: #3656f8;
  112. z-index: 1000;
  113. -webkit-transform: translateX(0);
  114. -ms-transform: translateX(0);
  115. transform: translateX(0);
  116. }
  117. #loader-wrapper .loader-section.section-left {
  118. left: 0;
  119. }
  120. #loader-wrapper .loader-section.section-right {
  121. right: 0;
  122. }
  123. .loaded #loader-wrapper .loader-section.section-left {
  124. -webkit-transform: translateX(-100%);
  125. -ms-transform: translateX(-100%);
  126. transform: translateX(-100%);
  127. -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  128. transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  129. }
  130. .loaded #loader-wrapper .loader-section.section-right {
  131. -webkit-transform: translateX(100%);
  132. -ms-transform: translateX(100%);
  133. transform: translateX(100%);
  134. -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  135. transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  136. }
  137. .loaded #loader {
  138. opacity: 0;
  139. -webkit-transition: all 0.3s ease-out;
  140. transition: all 0.3s ease-out;
  141. }
  142. .loaded #loader-wrapper {
  143. visibility: hidden;
  144. -webkit-transform: translateY(-100%);
  145. -ms-transform: translateY(-100%);
  146. transform: translateY(-100%);
  147. -webkit-transition: all 0.3s 1s ease-out;
  148. transition: all 0.3s 1s ease-out;
  149. }
  150. #loader-wrapper .load_title {
  151. font-family: 'Open Sans';
  152. color: #FFF;
  153. font-size: 19px;
  154. width: 100%;
  155. text-align: center;
  156. z-index: 9999999999999;
  157. position: absolute;
  158. top: 63%;
  159. opacity: 1;
  160. }
  161. #loader-wrapper .load_title span {
  162. font-weight: normal;
  163. font-size: 13px;
  164. color: #FFF;
  165. opacity: 0.5;
  166. }
  167. .el-submenu .el-menu-item {
  168. height: 40px;
  169. line-height: 40px;
  170. padding: 0 45px;
  171. min-width: 100px;
  172. }
  173. .aaa {
  174. position: absolute;
  175. top: 0;
  176. left: 0;
  177. z-index: 9999;
  178. }
  179. </style>
  180. <script type="text/javascript" src="https://webapi.amap.com/demos/js/liteToolbar.js"></script>
  181. </head>
  182. <body>
  183. <noscript>
  184. <strong>We're sorry but vms doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
  185. </noscript>
  186. <!-- <div id="app"></div> -->
  187. <div id="app">
  188. <div id="loader-wrapper">
  189. <div id="loader"></div>
  190. <div class="loader-section section-left"></div>
  191. <div class="loader-section section-right"></div>
  192. <div class="load_title">
  193. <div> 智慧社区管理平台</div>
  194. <span>正在加载系统资源,请耐心等待...</span>
  195. </div>
  196. </div>
  197. </div>
  198. <script src="<%= BASE_URL %>loctionJs/vue@2.6.12.js"></script>
  199. <script src="<%= BASE_URL %>loctionJs/day@1.8.36.js"></script>
  200. <script src="<%= BASE_URL %>loctionJs/echarts@4.8.0.js"></script>
  201. <script src="<%= BASE_URL %>loctionJs/element-ui@2.13.2.js"></script>
  202. <script src="<%= BASE_URL %>loctionJs/lodash@4.17.11.js"></script>
  203. <script src="<%= BASE_URL %>loctionJs/promise-polyfill@8.1.3.js"></script>
  204. <script src="<%= BASE_URL %>loctionJs/vue-router@3.4.3.js"></script>
  205. <script src="<%= BASE_URL %>loctionJs/vuex@3.5.1.js"></script>
  206. <script src="<%= BASE_URL %>loctionJs/axios@0.20.0.js"></script>
  207. </body>
  208. </html>