cy
2022-06-21 129904537f66509f97b285e7eb4f42b3dc349dd0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <meta charset="utf-8">
[#include "/business/wechat/include/title.html" /]
[#include "/business/wechat/include/wheader.html" /]
 
  </head>
  
  <body>
    正在跳转中... <br>
    
    
    <script type="text/javascript">
    var url = '${url}';
    var user = '${user}';
    $(function() {
        try{
          var zt = app.checkClientIsTrue();
          if(zt == 1){
             if(user == 1){
                window.location.href="${base}/wechat/clientCustomerBind.html";
             }else{
                window.location.href="${base}/wechat/clientEngineerBind.html";
             }
           }
        }catch(err){
           window.location.href=url;
        }
    })
    </script>
  </body>
</html>