<!DOCTYPE html>
|
<html lang="zh-cn" xmlns:th=http://www.thymeleaf.org>
|
<head>
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
<meta name="viewport"
|
content="width=device-width, initial-scale=1, maximum-scale=1">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
<meta name="renderer" content="webkit">
|
<title>智慧仓库管理系统 - 欢迎页面</title>
|
|
|
<link rel="stylesheet"
|
th:href="@{../../static/plugins/layui/css/layui.css}">
|
<link rel="stylesheet"
|
th:href="@{../../static/admin/verb/welcome.css}">
|
|
</head>
|
<body>
|
<div class="i-container ">
|
<div class="i-bodyBg">
|
<img th:src="@{../../static/images/tfhyy-body_03.png}" />
|
</div>
|
|
<div class="tfhyy-main">
|
|
<h2 class="wel-tit">
|
<img th:src="@{../../static/images/tfhyy-titimg.png}" />
|
</h2>
|
|
<div class="tfhyy-nav">
|
<div class="tfhyy-item tfhyy-item1">
|
<a href="javascript:;;" onclick="open1()"> <img
|
th:src="@{../../static/images/tfhyy-icon1.png}" />
|
</a>
|
</div>
|
<div class="tfhyy-item tfhyy-item2">
|
<a href="javascript:;;" onclick="open2()"> <img
|
th:src="@{../../static/images/tfhyy-icon2.png}" />
|
</a>
|
</div>
|
<div class="tfhyy-item tfhyy-item3">
|
<a href="javascript:;;" onclick="open3()"> <img
|
th:src="@{../../static/images/tfhyy-icon3.png}" />
|
</a>
|
</div>
|
<div class="tfhyy-item tfhyy-item4">
|
<a href="javascript:;;" onclick="open4()"> <img
|
th:src="@{../../static/images/tfhyy-icon4.png}" />
|
</a>
|
</div>
|
<div class="tfhyy-item tfhyy-item5">
|
<a href="javascript:;;" onclick="open5()"> <img
|
th:src="@{../../static/images/tfhyy-icon5.png}" />
|
</a>
|
</div>
|
</div>
|
|
</div>
|
<!--tfhyy-main end-->
|
</div>
|
|
<script th:src="@{../../static/plugins/layui/layui.js}"></script>
|
<script th:src="@{../../static/js/jquery.min.js}"></script>
|
|
<script type="text/javascript">
|
var layer;
|
layui.use([ 'layer' ], function() {
|
layer = layui.layer;
|
});
|
|
var menuTag = window.parent.MENU_TAG;
|
function open1() {
|
if("NO" == menuTag){
|
window.parent.openTab("./no-access", "系统", "sys");
|
return;
|
}
|
window.parent.openTab("com.ld.igds.verb.view.IntelTask.d", "智能通风任务", "IntelTask");
|
};
|
|
function open2() {
|
if("NO" == menuTag){
|
window.parent.openTab("./no-access", "系统", "sys");
|
return;
|
}
|
window.parent.openTab("./basic/verb/verb-hand1", "手动通风", "areation-hand");
|
};
|
|
function open3() {
|
if("NO" == menuTag){
|
window.parent.openTab("./no-access", "系统", "sys");
|
return;
|
}
|
window.parent.openTab("./basic/verb/verb-auto", "自动通风", "areation-auto");
|
};
|
|
function open4() {
|
if("NO" == menuTag){
|
window.parent.openTab("./no-access", "系统", "sys");
|
return;
|
}
|
window.parent.openTab("com.ld.igds.verb.view.IntelConf.d", "智能通风配置", "areation-auto");
|
};
|
|
function open5() {
|
if("NO" == menuTag){
|
window.parent.openTab("./no-access", "系统", "sys");
|
return;
|
}
|
window.parent.openTab("./basic/verb/verb-standard", "通风标准", "areation-standard");
|
};
|
</script>
|
</body>
|
</html>
|