index.html 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <!DOCTYPE html>
  2. <html lang="zh">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <link rel="icon" href="/favicon.ico" />
  6. <meta name="viewport"
  7. content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, viewport-fit=cover" />
  8. <meta http-equiv="Cache-control" content="no-cache">
  9. <meta http-equiv="Cache" content="no-cache">
  10. <meta http-equiv="Content-Security-Policy" content="
  11. default-src * data: blob: ws: wss: gap://ready file://*;
  12. style-src * 'unsafe-inline';
  13. script-src * 'unsafe-inline' 'unsafe-eval';
  14. connect-src * ws: wss:;">
  15. <meta name="apple-mobile-web-app-capable" content="yes" />
  16. <!-- 设置苹果工具栏颜色 -->
  17. <meta name="apple-mobile-web-app-status-bar-style" content="black" />
  18. <!-- 忽略页面中的数字识别为电话,忽略email识别 -->
  19. <meta name="format-detection" content="telphone=no, email=no" />
  20. <!-- 启用360浏览器的极速模式(webkit) -->
  21. <meta name="renderer" content="webkit" />
  22. <!-- 避免IE使用兼容模式 -->
  23. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  24. <meta name="HandheldFriendly" content="true" />
  25. <!-- uc强制竖屏 -->
  26. <meta name="screen-orientation" content="portrait" />
  27. <!-- QQ强制竖屏 -->
  28. <meta name="x5-orientation" content="portrait" />
  29. <!-- UC强制全屏 -->
  30. <meta name="full-screen" content="yes" />
  31. <!-- QQ强制全屏 -->
  32. <meta name="x5-fullscreen" content="true" />
  33. <!-- UC应用模式 -->
  34. <meta name="browsermode" content="application" />
  35. <!-- QQ应用模式 -->
  36. <meta name="x5-page-mode" content="app" />
  37. <!-- 设置在apple上以应用模式启动时,是否全屏 -->
  38. <meta name="apple-touch-fullscreen" content="yes" />
  39. <!-- windows phone 点击无高光 -->
  40. <meta name="msapplication-tap-highlight" content="no" />
  41. <meta name="referrer" content="no-referrer" />
  42. <title>管乐团</title>
  43. <script src="/flexible.js" charset="UTF-8"></script>
  44. <script type="text/javascript">
  45. window.paymentType = 'STUDENT'
  46. </script>
  47. <script>
  48. !(function (t) {
  49. function e() {
  50. var e = this || self;
  51. (e.globalThis = e), delete t.prototype._T_;
  52. }
  53. "object" != typeof globalThis &&
  54. (this
  55. ? e()
  56. : (t.defineProperty(t.prototype, "_T_", {
  57. configurable: !0,
  58. get: e,
  59. }),
  60. _T_));
  61. })(Object);
  62. </script>
  63. </head>
  64. <body>
  65. <div id="app"></div>
  66. <script type="module" src="/src/student/main.ts"></script>
  67. </body>
  68. </html>