<!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/grain/welcome.css}">
|
</head>
|
|
<body>
|
<div class="i-container ">
|
<div class="i-bodyBg">
|
<img th:src="@{../../static/images/wel-body_03.png}" />
|
</div>
|
|
<div class="wel-main">
|
|
<h2 class="wel-tit">
|
<img th:src="@{../../static/images/title-online.png}" />
|
</h2>
|
|
<div class="wel-nav">
|
<div class="wel-item wel-item1">
|
<span class="wel-item-img"><img
|
th:src="@{../../static/images/temp-control.png}" /></span> <a
|
href="javascript:;" onclick="open1()">
|
<p>在线检测</p>
|
</a>
|
</div>
|
<div class="wel-item wel-item2">
|
<span class="wel-item-img"><img
|
th:src="@{../../static/images/temp-log.png}" /></span> <a
|
href="javascript:;" onclick="open2()">
|
<p>检测记录</p>
|
</a>
|
</div>
|
|
<!-- <div class="wel-item wel-item3">-->
|
<!-- <span class="wel-item-img"><img-->
|
<!-- th:src="@{../../static/images/temp-auto.png}" /></span> <a-->
|
<!-- href="javascript:;" onclick="open3()">-->
|
<!-- <p>隐藏</p>-->
|
<!-- </a>-->
|
<!-- </div>-->
|
|
<div class="wel-item wel-item4">
|
<span class="wel-item-img"><img
|
th:src="@{../../static/images/temp-mode.png}" /></span> <a
|
href="javascript:;" onclick="open4()">
|
<p>检测配置</p>
|
</a>
|
</div>
|
<div class="wel-item wel-item5">
|
<span class="wel-item-img"><img
|
th:src="@{../../static/images/sys-warn.png}" /></span> <a
|
href="javascript:;" onclick="open5()">
|
<p>预警信息</p>
|
</a>
|
</div>
|
</div>
|
</div>
|
<!--wel-main end-->
|
</div>
|
|
<script type="text/javascript">
|
var menuTag = window.parent.MENU_TAG;
|
|
function open1() {
|
if("NO" == menuTag){
|
window.parent.openTab("./no-access", "系统",
|
"sys");
|
return;
|
}
|
window.parent
|
.openTab("./basic/quantity/view-check", "在线检测", "QuantityView");
|
};
|
|
function open2() {
|
if("NO" == menuTag){
|
window.parent.openTab("./no-access", "系统",
|
"sys");
|
return;
|
}
|
window.parent.openTab("com.ld.igds.quantity.QuantityData.d", "检测记录", "QuantityData");
|
};
|
|
function open3() {
|
if("NO" == menuTag){
|
window.parent.openTab("./no-access", "系统",
|
"sys");
|
return;
|
}
|
window.parent.openTab("com.ld.igds.quantity.QuantityConf.d", "检测记录", "QuantityConf");
|
};
|
|
function open4() {
|
if("NO" == menuTag){
|
window.parent.openTab("./no-access", "系统",
|
"sys");
|
return;
|
}
|
window.parent.openTab("com.ld.igds.quantity.QuantityConf.d", "检测记录", "QuantityConf");
|
};
|
|
function open5() {
|
if("NO" == menuTag){
|
window.parent.openTab("./no-access", "系统",
|
"sys");
|
return;
|
}
|
//window.parent.openTab("com.ld.igds.common.Device.d", "设备配置", "Device");
|
};
|
</script>
|
</body>
|
</html>
|