| 12345678910111213141516171819202122232425262728293031323334 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8" />
- <meta
- name="viewport"
- content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
- />
- <script>
- function isPC () {
- // 屏幕尺寸检测
- const isSmallScreen = window.innerWidth < 768;
- return !isSmallScreen;
- }
- if (isPC()) {
- window.location.replace('https://callweb.wefanbot.com')
- }
- window.addEventListener('resize', function() {
- if (isPC()) {
- window.location.replace('https://callweb.wefanbot.com')
- }
- })
- </script>
- <title></title>
- <!--preload-links-->
- <!--app-context-->
- </head>
- <body>
- <div id="app"><!--app-html--></div>
- <script type="module" src="/main.js"></script>
- </body>
- </html>
|