You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
782 B

3 years ago
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>ECTouch Message</title>
<script type="text/javascript" src="{__PUBLIC__}script/jquery.min.js"></script>
<script type="text/javascript" src="{__PUBLIC__}layer/layer.js"></script>
</head>
<body>
<script type="text/javascript">
layer.msg('{$data.message}', {icon: {$data.type}, offset: '150px', time: 1000, title: '{$data.title}'});
(function(){
var time = 1;
var href = '{$data.url}';
var interval = setInterval(function(){
--time;
if(time <= 0) {
window.location.href = href;
clearInterval(interval);
};
}, 1000);
})();
</script>
</body>
3 years ago
</html>