45 lines
1.5 KiB
HTML
45 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black">
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta name="format-detection" content="telephone=no">
|
|
<title>产业工人管理平台</title>
|
|
<link rel="stylesheet" href="../layui/css/layui.css" media="all" />
|
|
<link rel="stylesheet" href="../css/global.css" media="all" />
|
|
<link rel="stylesheet" href="../css/font-awesome/css/font-awesome.css" media="all" />
|
|
</head>
|
|
|
|
<body>
|
|
<div class="layui-layout layui-layout-admin" style="border-bottom: solid 5px #1aa094;">
|
|
</div>
|
|
<script type="text/javascript" src="../layui/layui.js"></script>
|
|
<script type="text/javascript" src="../js/libs/jquery-3.6.0.js"></script>
|
|
<script type="text/javascript" src="../js/jq.js"></script>
|
|
<script type="text/javascript" src="../js/publicJs.js"></script>
|
|
<script type="text/javascript" src="../js/main.js"></script>
|
|
<script type="text/javascript">
|
|
$(function(){
|
|
openNewWindow();
|
|
})
|
|
function openNewWindow() {
|
|
const strUrl = "http://10.1.0.142:1916/gzRealName/login.html";
|
|
let a = document.createElement("a");
|
|
document.body.appendChild(a);
|
|
a.style = "display: none";
|
|
a.target = "_blank";
|
|
a.href = strUrl;
|
|
a.click();
|
|
document.body.removeChild(a);
|
|
}
|
|
|
|
|
|
</script>
|
|
</div>
|
|
</body>
|
|
|
|
</html> |