You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
4.0 KiB
106 lines
4.0 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title></title>
|
|
<script src="../js/jquery-2.1.3.min.js"></script>
|
|
<link href="../layui/css/layui.css" rel="stylesheet" />
|
|
<script src="../layui/layui.js"></script>
|
|
<style type="text/css">
|
|
html {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.menuTitle {
|
|
font-size: 26px;
|
|
}
|
|
|
|
.men {
|
|
font-size: 16px;
|
|
line-height: 50px;
|
|
padding-left: 20px;
|
|
}
|
|
|
|
.menSel {
|
|
font-size: 18px;
|
|
background-color: #0094ff;
|
|
}
|
|
</style>
|
|
<script type="text/javascript">
|
|
|
|
$(function () {
|
|
$(".men").click(function () {
|
|
$(".men").removeClass("menSel");
|
|
$(this).addClass("menSel");
|
|
$("#main_iframe").attr("src", $(this).attr("urlStr"));
|
|
});
|
|
});
|
|
|
|
</script>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<div class="layui-row" style="width: 100%; height: 100%;">
|
|
<div class="layui-col-xs2">
|
|
<div class="grid-demo grid-demo-bg1" style="width: 100%; height: 100%;">
|
|
|
|
|
|
<ul class="layui-nav layui-nav-tree layui-inline" lay-filter="demo" style="margin-right: 10px; width:95%;">
|
|
<li class="layui-nav-item layui-nav-itemed">
|
|
<a href="javascript:;" class="menuTitle">PC端</a>
|
|
<dl class="layui-nav-child">
|
|
<dd><div class="men" urlStr="pg1.html">职责管理</div></dd>
|
|
<dd><div class="men" urlStr="pg2.html">流程管理</div> </dd>
|
|
<dd><div class="men" urlStr="pg3.html">任务管理</div> </dd>
|
|
<dd><div class="men" urlStr="pg4.html">待办任务</div> </dd>
|
|
<dd><div class="men" urlStr="pg5.html">汇总查询</div> </dd>
|
|
<dd><div class="men" urlStr="pg8.html">日统计分析</div> </dd>
|
|
<dd><div class="men" urlStr="pg9.html">月统计分析</div> </dd>
|
|
<li class="layui-nav-item layui-nav-itemed">
|
|
<a href="javascript:;" class="menuTitle">电子档案管理</a>
|
|
<dl class="layui-nav-child">
|
|
<dd><div class="men" urlStr="personFiles/admin/list.html">消防员电子档案</div></dd>
|
|
<dd><div class="men" urlStr="personFiles/query/list.html">电子档案查询</div></dd>
|
|
<dd><div class="men" urlStr="personFiles/dictionaries/list.html">字典项管理</div></dd>
|
|
<dd><div class="men" urlStr="personFiles/statistics/index.html">统计页</div></dd>
|
|
</dl>
|
|
</li>
|
|
</dl>
|
|
</li>
|
|
<li class="layui-nav-item">
|
|
<a href="javascript:;" class="menuTitle">手机端</a>
|
|
<dl class="layui-nav-child">
|
|
<dd><div class="men" urlStr="pg6.html">待办任务</div></dd>
|
|
<dd><div class="men" urlStr="pg7.html">任务处理</div> </dd>
|
|
</dl>
|
|
</li>
|
|
<!--<li class="layui-nav-item"><a href="">云市场</a></li>
|
|
<li class="layui-nav-item"><a href="">社区</a></li>-->
|
|
</ul>
|
|
|
|
|
|
<br />
|
|
|
|
|
|
|
|
|
|
</div>
|
|
</div>
|
|
<div class="layui-col-xs10" style="height:99%; padding-top:10px;">
|
|
<div class="grid-demo" style="width: 99%; height: 100%; background-color: #edf9ff; border: 1px solid #a4a1a1; border-radius: 15px;">
|
|
|
|
<iframe id="main_iframe" style="width:100%; height:98%; border:none;" src="pg5.html"></iframe>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|