<!DOCTYPE html>
|
<html>
|
<head>
|
<meta charset="utf-8">
|
<title>自动仓库WCS系统</title>
|
<link rel="icon" href="../static/images/favicon.ico" type="image/x-icon">
|
<link rel="stylesheet" href="../static/css/index.css">
|
<link rel="stylesheet" href="../static/css/layx.min.css" type="text/css" />
|
<script src="../static/js/jquery/jquery-3.3.1.min.js"></script>
|
<script src="../static/js/tools/layx.min.js"></script>
|
<style>
|
.layx-window.layx-skin-news .layx-control-bar {
|
background-color: #333333;
|
}
|
html{
|
/*transform: scale(1) translate(0,0);*/
|
transform: scale(0.5) translate(-50%,-50%);
|
height: 190%;
|
width: 190%;
|
}
|
.site-logo {
|
text-align: center; /* 让Logo水平居中 */
|
padding: 15px 0; /* 在Logo上下添加内边距 */
|
border-bottom: 1px solid #eee; /* 可选:添加一条分隔线 */
|
}
|
|
.site-logo img {
|
max-width: 80%; /* Logo最大宽度为容器宽度的80% */
|
height: auto; /* 高度自动,保持比例 */
|
max-height: 60px; /* 设置Logo最大高度 */
|
}
|
</style>
|
</head>
|
<body>
|
<!-- 添加Logo -->
|
<div class="site-logo">
|
<img src="../static/images/zy_logo_dark_color.png" alt="自动仓库WCS系统 Logo">
|
</div>
|
<!-- 导航栏 -->
|
<!-- <div class="nav">-->
|
<!-- <li class="right">注销<a id="about" class="nav-unselect" onclick="logout()" href="#"></a></li>-->
|
<!-- </div>-->
|
<div class="sidebar">
|
<div class="nav">
|
<ul class="cl-effect-4">
|
<li><a id="console" onclick="nav(this.id)" class="nav-select" href="#">主控图</a></li>
|
<li><a id="pipeline" onclick="nav(this.id)" class="nav-unselect" href="#">输送设备</a></li>
|
<li><a id="crn" onclick="nav(this.id)" class="nav-unselect" href="#">堆垛机</a></li>
|
</ul>
|
</div>
|
</div>
|
<!--<div style="z-index: 999; position: absolute; top: 250px; left: 900px; width: 200px; height: 200px; opacity: 0.5;background-color: #0000FF">-->
|
|
<!--</div>-->
|
<!-- 主体内容 -->
|
<iframe id="content" src="console.html"></iframe>
|
<!--<footer class="footer">-->
|
<!-- Copyright © 2023 All Rights Reserved. <a href="http://www.zoneyung.com" target="_blank">浙江中扬立库技术有限公司</a> 保留所有权利-->
|
<!--</footer>-->
|
</body>
|
<script>
|
// 导航栏
|
function nav(id) {
|
$('.nav-select').attr("class", "nav-unselect");
|
$('#'+id).attr("class", "nav-select");
|
$('#content').attr("src", id+".html");
|
}
|
|
// function logout() {
|
// localStorage.removeItem("token");
|
// window.location.href = baseUrl + "/login";
|
// }
|
|
// 系统运行状态
|
var systemRunning = true;
|
</script>
|
</html>
|