index.html 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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. <script src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
  20. <% if (htmlWebpackPlugin.options.app) { %>
  21. <script src="cordova.js"></script>
  22. <% } %>
  23. <title><%= htmlWebpackPlugin.options.title %></title>
  24. <style>
  25. @font-face {
  26. font-family: 'font_family'; /* Project id 2852142 */
  27. src: url('<%= BASE_URL %>font/iconfont.woff2?t=1658717109985') format('woff2'),
  28. url('<%= BASE_URL %>font/iconfont.woff?t=1658717109985') format('woff'),
  29. url('<%= BASE_URL %>font/iconfont.ttf?t=1658717109985') format('truetype');
  30. }
  31. </style>
  32. </head>
  33. <body>
  34. <noscript>
  35. <strong>
  36. We're sorry but <%= htmlWebpackPlugin.options.title %> doesn't work properly without JavaScript enabled.
  37. Please enable it to continue.
  38. </strong>
  39. </noscript>
  40. <div id="app"></div>
  41. <div style="display: none">
  42. <script
  43. type="text/javascript"
  44. src="https://s4.cnzz.com/z_stat.php?id=1281049823&web_id=1281049823"
  45. ></script>
  46. <!-- built files will be auto injected -->
  47. </div>
  48. </body>
  49. <script>
  50. function goFetch(path) {
  51. window.$vm.$dialog.close();
  52. window.$vm.$router.push(path);
  53. }
  54. </script>
  55. </html>