You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

85 lines
2.7 KiB

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
  7. <meta name="apple-mobile-web-app-capable" content="yes">
  8. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  9. <meta name="format-detection" content="telephone=no">
  10. <!--避免微信管理防盗链机制-->
  11. <meta name="referrer" content="no-referrer" />
  12. <meta http-equiv="X-UA-Compatible" content="chrome=1" />
  13. <link rel="stylesheet" href="<%= BASE_URL %>cdn/animate/3.5.2/animate.css">
  14. <link rel="stylesheet" href="<%= BASE_URL %>cdn/avue/avue.css">
  15. <link rel="stylesheet" href="<%= BASE_URL %>cdn/avue/index.css">
  16. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  17. <title>智控管家</title>
  18. <style>
  19. .el-message .el-icon-success {
  20. font-size: 18px;
  21. }
  22. .el-message .el-icon-error {
  23. font-size: 18px;
  24. }
  25. .el-message .el-icon-warning {
  26. font-size: 18px;
  27. }
  28. .el-message .el-icon-info {
  29. font-size: 18px;
  30. }
  31. </style>
  32. </head>
  33. <body>
  34. <noscript>
  35. <strong>很抱歉,如果没有 JavaScript 支持,网站将不能正常工作。请启用浏览器的 JavaScript 然后继续。</strong>
  36. </noscript>
  37. <div id="app">
  38. <div class="avue-home">
  39. <div class="avue-home__main">
  40. <img class="avue-home__loading" src="./svg/loading-spin.svg" alt="loading">
  41. <div class="avue-home__title">
  42. 正在加载资源
  43. </div>
  44. <div class="avue-home__sub-title">
  45. 初次加载资源可能需要较多时间 请耐心等待
  46. </div>
  47. </div>
  48. <div class="avue-home__footer">
  49. <a href="https://pig4cloud.com/zh-cn" target="_blank">
  50. Copyright © 2020 pig4cloud.com</a>
  51. </div>
  52. </div>
  53. </div>
  54. <!-- built files will be auto injected -->
  55. <script src="<%= BASE_URL %>cdn/avue/index.js" charset="utf-8"></script>
  56. <script>
  57. var _hmt = _hmt || [];
  58. (function () {
  59. var hm = document.createElement('script')
  60. hm.src = 'https://hm.baidu.com/hm.js?0625618efb027ed02e88da84c121652e'
  61. var s = document.getElementsByTagName('script')[0]
  62. s.parentNode.insertBefore(hm, s)
  63. })()
  64. fnResize();
  65. window.onresize = function () {
  66. fnResize();
  67. }
  68. function fnResize() {
  69. var deviceWidth = document.documentElement.clientWidth || window.innerWidth;
  70. if (deviceWidth >= 1920) {
  71. deviceWidth = 1920;
  72. }
  73. if (deviceWidth <= 1200) {
  74. deviceWidth = 1200;
  75. }
  76. document.documentElement.style.fontSize = (deviceWidth / 19.2) + 'px';
  77. }
  78. </script>
  79. </body>
  80. </html>