index.html 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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">
  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. </head>
  51. <body>
  52. <noscript>
  53. <strong>We're sorry but CRMEB doesn't work properly without JavaScript enabled. Please enable it to continue.</strong>
  54. </noscript>
  55. <div id="app">
  56. <div class="lottie-bg">
  57. <div id="lottie"><img src="<%= BASE_URL %>logo.png" rel="preload" style="width: 100%;"></div>
  58. </div>
  59. </div>
  60. <!-- built files will be auto injected -->
  61. </body>
  62. </html>