index.html 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <!DOCTYPE html>
  2. <html lang="zh-Hans">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <link rel="icon" href="<%= BASE_URL %>favicon.ico" />
  7. <meta
  8. name="viewport"
  9. content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, viewport-fit=cover"
  10. />
  11. <meta name="msapplication-tap-highlight" content="no" />
  12. <meta name="format-detection" content="telphone=no" />
  13. <meta name="format-detection" content="email=no" />
  14. <meta name="screen-orientation" content="portrait" />
  15. <meta name="x5-orientation" content="portrait" />
  16. <meta name="full-screen" content="yes" />
  17. <meta name="x5-fullscreen" content="true" />
  18. <meta name="theme-color" content="#000000" />
  19. <meta http-equiv="Pragma" content="no-cache">
  20. <meta http-equiv="Cache-Control" content="no-cache">
  21. <meta http-equiv="Expires" content="0">
  22. <script src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
  23. <% if (htmlWebpackPlugin.options.app) { %>
  24. <script src="cordova.js"></script>
  25. <% } %>
  26. <title><%= htmlWebpackPlugin.options.title %></title>
  27. <style>
  28. @font-face {
  29. font-family: 'font_family'; /* Project id 2852142 */
  30. src: url('<%= BASE_URL %>font/iconfont.woff2?t=1658717109985') format('woff2'),
  31. url('<%= BASE_URL %>font/iconfont.woff?t=1658717109985') format('woff'),
  32. url('<%= BASE_URL %>font/iconfont.ttf?t=1658717109985') format('truetype');
  33. }
  34. </style>
  35. </head>
  36. <body>
  37. <noscript>
  38. <strong>
  39. We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
  40. Please enable it to continue.
  41. </strong>
  42. </noscript>
  43. <div id="app"></div>
  44. <div style="display: none">
  45. <script
  46. type="text/javascript"
  47. src="https://s4.cnzz.com/z_stat.php?id=1281049823&web_id=1281049823"
  48. ></script>
  49. <!-- built files will be auto injected -->
  50. </div>
  51. </body>
  52. <script>
  53. function goFetch(path) {
  54. window.$vm.$dialog.close();
  55. window.$vm.$router.push(path);
  56. }
  57. </script>
  58. </html>