You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
870 B
HTML
35 lines
870 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1,minimal-ui">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
|
|
<script src="__JS__/jquery-1.11.1.min.js"></script>
|
|
<title>您已下线</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<input type="hidden" name="pay_order_number" class="orderno" value="{:I('pay_order_number')}">
|
|
<input type="hidden" name="Scheme" class="Scheme" value="{$Scheme}">
|
|
|
|
</body>
|
|
</html>
|
|
|
|
<script>
|
|
|
|
$(function () {
|
|
var u = navigator.userAgent;
|
|
var isAndroid = u.indexOf('Android') > -1 || u.indexOf('Adr') > -1; //android终端
|
|
|
|
if (isAndroid) {
|
|
window.txyxsdk.noticelogout("您已下线,请重新登入。");
|
|
} else {
|
|
window.location.href = "?action=relogin";
|
|
}
|
|
});
|
|
|
|
</script>
|
|
|