<!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>
|