index.html 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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. <meta http-equiv="X-UA-Compatible" content="chrome=1" />
  11. <link rel="stylesheet" href="<%= BASE_URL %>cdn/element-ui/2.4.6/theme-chalk/index.css">
  12. <link rel="stylesheet" href="<%= BASE_URL %>cdn/animate/3.5.2/animate.css">
  13. <link rel="stylesheet" href="<%= BASE_URL %>cdn/iconfont/1.0.0/index.css">
  14. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  15. <title>PigX微服务快速开发框架</title>
  16. <style>
  17. html,
  18. body,
  19. #app {
  20. height: 100%;
  21. margin: 0;
  22. padding: 0;
  23. }
  24. .avue-home {
  25. background-color: #303133;
  26. height: 100%;
  27. display: flex;
  28. flex-direction: column;
  29. }
  30. .avue-home__main {
  31. user-select: none;
  32. width: 100%;
  33. flex-grow: 1;
  34. display: flex;
  35. justify-content: center;
  36. align-items: center;
  37. flex-direction: column;
  38. }
  39. .avue-home__footer {
  40. width: 100%;
  41. flex-grow: 0;
  42. text-align: center;
  43. padding: 1em 0;
  44. }
  45. .avue-home__footer>a {
  46. font-size: 12px;
  47. color: #ABABAB;
  48. text-decoration: none;
  49. }
  50. .avue-home__loading {
  51. height: 32px;
  52. width: 32px;
  53. margin-bottom: 20px;
  54. }
  55. .avue-home__title {
  56. color: #FFF;
  57. font-size: 14px;
  58. margin-bottom: 10px;
  59. }
  60. .avue-home__sub-title {
  61. color: #ABABAB;
  62. font-size: 12px;
  63. }
  64. </style>
  65. </head>
  66. <body>
  67. <noscript>
  68. <strong>很抱歉,如果没有 JavaScript 支持,网站将不能正常工作。请启用浏览器的 JavaScript 然后继续。</strong>
  69. </noscript>
  70. <div id="app">
  71. <div class="avue-home">
  72. <div class="avue-home__main">
  73. <img class="avue-home__loading" src="./svg/loading-spin.svg" alt="loading">
  74. <div class="avue-home__title">
  75. 正在加载资源
  76. </div>
  77. <div class="avue-home__sub-title">
  78. 初次加载资源可能需要较多时间 请耐心等待
  79. </div>
  80. </div>
  81. <div class="avue-home__footer">
  82. <a href="https://pig4cloud.com/zh-cn" target="_blank">
  83. https://pig4cloud.com/zh-cn </a>
  84. </div>
  85. </div>
  86. </div>
  87. <!-- built files will be auto injected -->
  88. <script src="<%= BASE_URL %>util/aes.js" charset="utf-8"></script>
  89. <script src="<%= BASE_URL %>util/aes.js" charset="utf-8"></script>
  90. <script src="<%= BASE_URL %>util/crypto-js.js" charset="utf-8"></script>
  91. <script src="<%= BASE_URL %>util/mode-ecb.js" charset="utf-8"></script>
  92. <script src="<%= BASE_URL %>util/pad-zeropadding.js" charset="utf-8"></script>
  93. <script src="<%= BASE_URL %>cdn/vue/2.5.2/vue.min.js" charset="utf-8"></script>
  94. <script src="<%= BASE_URL %>cdn/vuex/2.4.1/vuex.min.js" charset="utf-8"></script>
  95. <script src="<%= BASE_URL %>cdn/vue-router/3.0.1/vue-router.min.js" charset="utf-8"></script>
  96. <script src="<%= BASE_URL %>cdn/axios/1.0.0/axios.min.js" charset="utf-8"></script>
  97. <script src="<%= BASE_URL %>cdn/element-ui/2.4.6/index.js" charset="utf-8"></script>
  98. </body>
  99. </html>