index.html 780 B

12345678910111213141516171819202122232425262728293031323334
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta
  6. name="viewport"
  7. content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
  8. />
  9. <script>
  10. function isPC () {
  11. // 屏幕尺寸检测
  12. const isSmallScreen = window.innerWidth < 768;
  13. return !isSmallScreen;
  14. }
  15. if (isPC()) {
  16. window.location.replace('https://callweb.wefanbot.com')
  17. }
  18. window.addEventListener('resize', function() {
  19. if (isPC()) {
  20. window.location.replace('https://callweb.wefanbot.com')
  21. }
  22. })
  23. </script>
  24. <title></title>
  25. <!--preload-links-->
  26. <!--app-context-->
  27. </head>
  28. <body>
  29. <div id="app"><!--app-html--></div>
  30. <script type="module" src="/main.js"></script>
  31. </body>
  32. </html>