index.html 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta 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, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no, viewport-fit=cover" />
  7. <script src="./static/vue.min.js" rel="preload" as="script"></script>
  8. <script src="./static/vue-router.min.js" rel="preload" as="script"></script>
  9. <script src="./static/axios@0.21.0.min.js" rel="preload" as="script"></script>
  10. <script src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js"></script>
  11. <title>报表</title>
  12. <style>
  13. [v-cloak] {
  14. display: none;
  15. }
  16. body {
  17. /* IOS禁止微信调整字体大小 */
  18. -webkit-text-size-adjust: 100% !important;
  19. }
  20. </style>
  21. <script>
  22. // 安卓的解决方案是通过 WeixinJSBridge 对象将网页的字体大小设置为默认大小,并且重写设置字体大小的方法,让用户不能在该网页下设置字体大小:
  23. (function() {
  24. // title
  25. document.title = "业绩报表";
  26. if (
  27. typeof WeixinJSBridge == "object" &&
  28. typeof WeixinJSBridge.invoke == "function"
  29. ) {
  30. handleFontSize();
  31. } else {
  32. if (document.addEventListener) {
  33. document.addEventListener(
  34. "WeixinJSBridgeReady",
  35. handleFontSize,
  36. false
  37. );
  38. } else if (document.attachEvent) {
  39. document.attachEvent("WeixinJSBridgeReady", handleFontSize);
  40. document.attachEvent("onWeixinJSBridgeReady", handleFontSize);
  41. }
  42. }
  43. function handleFontSize() {
  44. // 设置网页字体为默认大小
  45. WeixinJSBridge.invoke("setFontSizeCallback", {
  46. fontSize: 0
  47. });
  48. // 重写设置网页字体大小的事件
  49. WeixinJSBridge.on("menu:setfont", function() {
  50. WeixinJSBridge.invoke("setFontSizeCallback", {
  51. fontSize: 0
  52. });
  53. });
  54. }
  55. })();
  56. </script>
  57. </head>
  58. <body>
  59. <noscript>
  60. <strong
  61. >We're sorry but pingyiweb doesn't work properly without JavaScript
  62. enabled. Please enable it to continue.</strong
  63. >
  64. </noscript>
  65. <div id="app"></div>
  66. <!-- built files will be auto injected -->
  67. </body>
  68. </html>