index.html 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="browsermode" content="application"/>
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
  7. <meta http-equiv="pragma" content="no-cache">
  8. <meta http-equiv="cache-control" content="no-cache">
  9. <meta http-equiv="expires" content="0">
  10. <meta http-equiv="Cache" content="no-cache">
  11. <meta name="renderer" content="webkit">
  12. <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0,viewport-fit=cover">
  13. <!-- 禁止百度转码 -->
  14. <meta http-equiv="Cache-Control" content="no-siteapp" />
  15. <!-- uc强制竖屏 -->
  16. <meta name="screen-orientation" content="portrait">
  17. <!-- QQ强制竖屏 -->
  18. <meta name="x5-orientation" content="portrait">
  19. <meta content="yes" name="apple-mobile-web-app-capable">
  20. <meta content="black" name="apple-mobile-web-app-status-bar-style">
  21. <meta name="format-detection" content="telephone=no"/>
  22. <title><%= VUE_APP_NAME %></title>
  23. <script type="text/javascript" src="cordova.js"></script>
  24. <link rel="icon" href="<%= BASE_URL %>favicon.ico">
  25. <style>
  26. .lottie-bg {
  27. position: fixed;
  28. left: 0;
  29. top: 0;
  30. background-color: #fff;
  31. width: 100%;
  32. height: 100%;
  33. z-index: 999;
  34. display: -webkit-flex;
  35. display: flex;
  36. -webkit-align-items: center;
  37. align-items: center;
  38. -webkit-justify-content: center;
  39. justify-content: center;
  40. }
  41. #lottie {
  42. width: 35%;
  43. display: block;
  44. overflow: hidden;
  45. transform: translate3d(0,0,0);
  46. margin: auto;
  47. padding-bottom: 5rem;
  48. }
  49. </style>
  50. <script>
  51. document.addEventListener('deviceready', function() {
  52. StatusBar.hide();
  53. }, false);
  54. </script>
  55. </head>
  56. <body>
  57. <noscript>
  58. <strong>We're sorry but CRMEB doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
  59. </noscript>
  60. <div id="app">
  61. <div class="lottie-bg">
  62. <div id="lottie"><img src="<%= BASE_URL %>logo.png" rel="preload" style="width: 100%;"></div>
  63. </div>
  64. </div>
  65. <!-- built files will be auto injected -->
  66. </body>
  67. </html>