This repository has been archived on 2026-06-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
wsh5485 7e47ce238b chore: 添加多个图片和资源文件
添加了管理后台所需的图片资源、Excel文件、安装程序以及设计相关的图片文件
2025-06-15 13:04:37 +08:00

46 lines
1.6 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="renderer" content="webkit">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title>错误页面-e订通</title>
<link rel="shortcut icon" type="image/x-icon" href="../favicon.ico" />
<link rel="stylesheet" href="layuiadmin/layui/css/layui.css">
<link rel="stylesheet" href="index.css">
<style>
body{
background: #2F4056;
}
.divBox{
padding:20px; width:320px; position:absolute; left:50%; top:50%; margin:-150px 0 0 -150px; -webkit-box-sizing:border-box;-moz-box-sizing:border-box; -o-box-sizing:border-box;box-sizing:border-box; background:#fff;-webkit-border-radius:10px; -moz-border-radius:10px; border-radius:10px; box-shadow:0 0 20px #009688;
}
.wrong_msg{width:100%;height:60px;line-height:30px;color:#FF5722;font-weight:bold;text-align:center;}
</style>
<script src="layuiadmin/layui/layui.js"></script>
<script src="js/function.js"></script>
</head>
<body>
<form class="layui-form" action="">
<div class="divBox" align="center">
<div class="wrong_msg"></div>
<div class="wrong_btn"></div>
</div>
</form>
<script>
layui.use('form', function(){
var $=layui.jquery;
var form = layui.form;
var error_msg=get_url_param("msg");
var btn_title=get_url_param("btn_title");
var btn_url=unescape(get_url_param("btn_url"));
if(error_msg)
$(".wrong_msg").html(error_msg);
if(btn_title){
var html1='<button type="button" class="layui-btn layui-btn-normal" onclick="window.location.href=\''+btn_url+'\'">刷新</button>';
$(".wrong_btn").html(html1);
}
});
</script>
</body>
</html>