<!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-sys.png}" />
|
</h2>
|
|
<div class="wel-nav">
|
<div class="wel-item wel-item1">
|
<span class="wel-item-img"><img
|
th:src="@{../../static/images/sys-depot.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/sys-grain.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/sys-device.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/sys-url.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-user.png}" /></span> <a
|
href="javascript:;" onclick="open5()">
|
<p>用户管理</p>
|
</a>
|
</div>
|
</div>
|
</div>
|
<!--wel-main end-->
|
</div>
|
|
<script type="text/javascript">
|
function open1() {
|
window.parent
|
.openTab("com.ld.igds.view.Depot.d", "仓库管理", "Depot");
|
};
|
|
function open2() {
|
window.parent.openTab("com.ld.igds.view.SysConf.d", "系统参数", "SysConf");
|
};
|
|
function open3() {
|
window.parent.openTab("com.ld.igds.sys.Dept.d", "企业组织管理", "Dept");
|
};
|
|
function open4() {
|
window.parent.openTab("com.ld.igds.sys.UrlMaintain.d", "菜单管理", "UrlMaintain");
|
};
|
|
function open5() {
|
window.parent.openTab("com.ld.igds.sys.User.d", "用户管理", "User");
|
};
|
</script>
|
</body>
|
</html>
|