浏览代码

再次更改移动端判断

Lijy 2 年之前
父节点
当前提交
6373ae7b2d
共有 1 个文件被更改,包括 7 次插入6 次删除
  1. 7 6
      fhKeeper/formulahousekeeper/timesheet_h5/public/index.html

+ 7 - 6
fhKeeper/formulahousekeeper/timesheet_h5/public/index.html

@@ -39,12 +39,13 @@
         console.log(urls, '当前的页面地址')
         var flag = IsPC(); //true为PC端,false为手机端
         // if (flag && urls.indexOf('mobworktime.ttkuaiban') != '-1') {
-        if(flag && urls.indexOf('mobworktime.ttkuaiban') != '-1') {
-            // 跳转到工时管家首页
-            location.href = 'https://worktime.ttkuaiban.com';
-        }
-        if(flag && urls.indexOf('mobworktime.ttkuaiban') == '-1') {
-            location.href = 'http://183.66.166.222:9097/';
+        if(flag) {
+            // 当前地址为工时管家移动端就跳转到工时管家官网
+            if(urls.indexOf('mobworktime.ttkuaiban') != '-1') {
+                location.href = 'https://worktime.ttkuaiban.com';
+            } else {
+                location.href = 'http://183.66.166.222:9097/';
+            }
         }
     </script>
 </head>