2024-07-26 18:15:22 +08:00
|
|
|
|
<!DOCTYPE html>
|
|
|
|
|
|
<html>
|
|
|
|
|
|
<head>
|
|
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
|
<title>护线员子系统</title>
|
2024-08-20 17:13:10 +08:00
|
|
|
|
<script src="../../plugs/jquery/jquery-3.6.0.min.js"></script>
|
|
|
|
|
|
<script src="../../js/public/jq.js"></script>
|
2024-07-31 19:01:05 +08:00
|
|
|
|
<script src="../../js/public/token.js"></script>
|
2024-07-26 18:15:22 +08:00
|
|
|
|
<script src="../../js/public/public.js"></script>
|
|
|
|
|
|
<script src="../../js/public/public_utils.js"></script>
|
|
|
|
|
|
<script src="../../js/public/aescbc.js"></script>
|
|
|
|
|
|
<script src="../../plugs/layui-v2.9.2/layui/layui.js"></script>
|
2024-08-20 17:13:10 +08:00
|
|
|
|
<script type="text/javascript" src="../../js/formSelects-v4.js"></script>
|
|
|
|
|
|
<link href="../../plugs/layui-v2.9.2/layui/css/layui.css" rel="stylesheet">
|
|
|
|
|
|
<link rel="stylesheet" href="../../js/formSelects-v4.css" type="text/css">
|
|
|
|
|
|
<!-- <script src="../../util/Interceptor.js"></script> -->
|
2024-07-26 18:15:22 +08:00
|
|
|
|
<!--业务js-->
|
2024-08-20 17:13:10 +08:00
|
|
|
|
<script src="../../js/dataStatistics/header.js"></script>
|
2024-07-31 19:01:05 +08:00
|
|
|
|
<!-- css -->
|
|
|
|
|
|
<link type="text/css" media="screen" href="../../css/header.css" rel="stylesheet">
|
2024-08-02 16:34:45 +08:00
|
|
|
|
<style>
|
|
|
|
|
|
#waitAuditNum{
|
|
|
|
|
|
padding: 3px 6px;
|
|
|
|
|
|
position: absolute;
|
|
|
|
|
|
top: 1%;
|
|
|
|
|
|
left: 50%;
|
|
|
|
|
|
background-color: rgba(255,165,0,1);
|
|
|
|
|
|
border-radius: 5px;
|
|
|
|
|
|
color: #ffffff;
|
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2024-08-20 17:13:10 +08:00
|
|
|
|
.layui-input, .layui-select, .layui-textarea {
|
|
|
|
|
|
border-width: 0px !important;
|
|
|
|
|
|
}
|
|
|
|
|
|
.layui-form-select .layui-edge {
|
|
|
|
|
|
border-top-color: rgba(0,0,0,0);
|
|
|
|
|
|
}
|
|
|
|
|
|
.layui-form-select dl dd.layui-this {
|
|
|
|
|
|
background-color: #1AA094;
|
|
|
|
|
|
}
|
2024-08-02 16:34:45 +08:00
|
|
|
|
/* 边框闪烁呼吸样式 */
|
|
|
|
|
|
.arrow_box{animation: glow 600ms ease-out infinite alternate; }
|
|
|
|
|
|
@keyframes glow {
|
|
|
|
|
|
0% {
|
|
|
|
|
|
background-color: rgba(255,165,0,1);
|
|
|
|
|
|
}
|
|
|
|
|
|
100% {
|
|
|
|
|
|
background-color: rgba(255,165,0,.2);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
</style>
|
2024-07-26 18:15:22 +08:00
|
|
|
|
</head>
|
2024-07-31 19:01:05 +08:00
|
|
|
|
<body>
|
|
|
|
|
|
<div class="layui-tab layui-tab-brief" lay-filter="chosenTab" style="height: 100%;width: 100%;display: flex;flex-direction: column;margin: 0;">
|
|
|
|
|
|
<div class="hraderBox" style="width: 100%;height: 8%;background-color: #fff;display: flex;margin-bottom: 10px;">
|
|
|
|
|
|
<div class="header-left">
|
|
|
|
|
|
<div></div>
|
2024-08-20 17:13:10 +08:00
|
|
|
|
<div style="font-weight: bold; font-size: 16px;">数据台账</div>
|
|
|
|
|
|
<form class="layui-form" onsubmit="return false" style="text-indent: 20x !important;">
|
|
|
|
|
|
<select id="subComId" name="subComId" class="layui-select" lay-filter="yjSelect">
|
|
|
|
|
|
</select>
|
|
|
|
|
|
</form>
|
2024-07-26 18:15:22 +08:00
|
|
|
|
</div>
|
2024-07-31 19:01:05 +08:00
|
|
|
|
<ul class="layui-tab-title tab-box">
|
|
|
|
|
|
<li class="layui-this">
|
|
|
|
|
|
<div><img src="../../image/tabIcon1.png" alt=""></div>
|
|
|
|
|
|
<div>首页</div>
|
|
|
|
|
|
</li>
|
|
|
|
|
|
<li>
|
|
|
|
|
|
<div><img src="../../image/tabIcon2.png" alt=""></div>
|
|
|
|
|
|
<div>巡视计划</div>
|
2024-08-02 16:34:45 +08:00
|
|
|
|
<div id="waitAuditNum"></div>
|
2024-07-31 19:01:05 +08:00
|
|
|
|
</li>
|
|
|
|
|
|
<li>
|
|
|
|
|
|
<div><img src="../../image/tabIcon3.png" alt=""></div>
|
|
|
|
|
|
<div>人员台账</div>
|
|
|
|
|
|
</li>
|
|
|
|
|
|
<li>
|
|
|
|
|
|
<div><img src="../../image/tabIcon4.png" alt=""></div>
|
|
|
|
|
|
<div>巡视台账</div>
|
|
|
|
|
|
</li>
|
|
|
|
|
|
<li>
|
|
|
|
|
|
<div><img src="../../image/tabIcon5.png" alt=""></div>
|
|
|
|
|
|
<div>工作签证</div>
|
|
|
|
|
|
</li>
|
|
|
|
|
|
<li>
|
|
|
|
|
|
<div><img src="../../image/tabIcon6.png" alt=""></div>
|
|
|
|
|
|
<div>特勤考勤台账</div>
|
|
|
|
|
|
</li>
|
|
|
|
|
|
<li>
|
|
|
|
|
|
<div><img src="../../image/tabIcon7.png" alt=""></div>
|
|
|
|
|
|
<div>工资台账</div>
|
|
|
|
|
|
</li>
|
|
|
|
|
|
</ul>
|
2024-07-26 18:15:22 +08:00
|
|
|
|
</div>
|
2024-07-31 19:01:05 +08:00
|
|
|
|
<div class="layui-tab-content" style="width: 100%;height: 90%;">
|
|
|
|
|
|
<!-- 栏目1 -->
|
|
|
|
|
|
<div class="layui-tab-item layui-show">
|
2024-08-20 17:13:10 +08:00
|
|
|
|
<iframe src="index.html" id="indexFrame" frameborder="0" width="100%"
|
2024-07-31 19:01:05 +08:00
|
|
|
|
height="100%"></iframe>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<!-- 栏目2 -->
|
|
|
|
|
|
<div class="layui-tab-item">
|
2024-08-02 16:34:45 +08:00
|
|
|
|
<iframe src="./viewPlan/viewPlanList.html" frameborder="0" width="100%"
|
2024-07-31 19:01:05 +08:00
|
|
|
|
height="100%"></iframe>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<!-- 栏目3 -->
|
|
|
|
|
|
<div class="layui-tab-item">
|
2024-08-02 16:34:45 +08:00
|
|
|
|
<iframe src="./staff/staffList.html" frameborder="0" width="100%"
|
2024-07-31 19:01:05 +08:00
|
|
|
|
height="100%"></iframe>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<!-- 栏目4 -->
|
|
|
|
|
|
<div class="layui-tab-item">
|
2024-08-02 16:34:45 +08:00
|
|
|
|
<iframe src="./viewStatistics/viewStatisticsList.html" frameborder="0" width="100%"
|
2024-07-31 19:01:05 +08:00
|
|
|
|
height="100%"></iframe>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<!-- 栏目5 -->
|
|
|
|
|
|
<div class="layui-tab-item">
|
2024-08-02 16:34:45 +08:00
|
|
|
|
<iframe src="./workVisa/workVisaList.html" frameborder="0" width="100%"
|
2024-07-31 19:01:05 +08:00
|
|
|
|
height="100%"></iframe>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<!-- 栏目6 -->
|
|
|
|
|
|
<div class="layui-tab-item">
|
2024-08-02 16:34:45 +08:00
|
|
|
|
<iframe src="./specialPatrol/specialPatrolList.html" frameborder="0" width="100%"
|
2024-07-31 19:01:05 +08:00
|
|
|
|
height="100%"></iframe>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<!-- 栏目7 -->
|
|
|
|
|
|
<div class="layui-tab-item">
|
2024-08-02 16:34:45 +08:00
|
|
|
|
<iframe src="./wagesStatistics/wagesStatisticsList.html" frameborder="0" width="100%"
|
2024-07-31 19:01:05 +08:00
|
|
|
|
height="100%"></iframe>
|
2024-07-26 18:15:22 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2024-08-02 16:34:45 +08:00
|
|
|
|
|
|
|
|
|
|
<!-- 页面下方的审核提示框 -->
|
|
|
|
|
|
<div style="position: fixed;top: 92%;color: #ffffff; background-color: rgba(0,0,0,.6);padding: 15px 20px;width: 97%;">
|
|
|
|
|
|
<span>i 系统检测到您有5条计划待审核,请尽快处理。</span>
|
|
|
|
|
|
<span id="goViewPlan" style="color: #66B1FF;cursor: pointer;" > >>去处理</span>
|
|
|
|
|
|
<span style="cursor: pointer;margin-left: 76%;" onclick="closeTop(this)">X</span>
|
|
|
|
|
|
</div>
|
2024-07-26 18:15:22 +08:00
|
|
|
|
</div>
|
2024-08-02 16:34:45 +08:00
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
//记录待审核计划数量,用于在头部展示
|
|
|
|
|
|
var waitAuditNum = 5;
|
|
|
|
|
|
|
|
|
|
|
|
$(function(){
|
|
|
|
|
|
layui.use(['element'], function () {
|
|
|
|
|
|
var element = layui.element;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$("#goViewPlan").click(function(){
|
|
|
|
|
|
//切换tab
|
|
|
|
|
|
$(".layui-tab-title>li").removeClass("layui-this")
|
|
|
|
|
|
$(".layui-tab-title>li:nth-child(2)").addClass("layui-this")
|
|
|
|
|
|
//切换内容
|
|
|
|
|
|
$(".layui-tab-content>div").removeClass("layui-show")
|
|
|
|
|
|
$(".layui-tab-content>div:nth-child(2)").addClass("layui-show")
|
|
|
|
|
|
|
|
|
|
|
|
//关闭底部提示框
|
|
|
|
|
|
$(this).parent().css("display", "none");
|
|
|
|
|
|
})
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//后台获取待审核计划数
|
|
|
|
|
|
/* $.ajax({
|
|
|
|
|
|
type: 'post',
|
|
|
|
|
|
contentType: "application/x-www-form-urlencoded",
|
|
|
|
|
|
url: "",
|
|
|
|
|
|
dataType: 'json',
|
|
|
|
|
|
data: {
|
|
|
|
|
|
id: id
|
|
|
|
|
|
},
|
|
|
|
|
|
success: function (data) {
|
|
|
|
|
|
$("#waitAuditNum").text(0)
|
|
|
|
|
|
}
|
|
|
|
|
|
}) */
|
|
|
|
|
|
if(waitAuditNum > 0){
|
|
|
|
|
|
$("#waitAuditNum").text(waitAuditNum);
|
|
|
|
|
|
$("#waitAuditNum").addClass("arrow_box");
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
//关闭底部的提示框
|
|
|
|
|
|
function closeTop(event){
|
|
|
|
|
|
$(event).parent().css("display", "none");
|
|
|
|
|
|
}
|
|
|
|
|
|
</script>
|
2024-07-26 18:15:22 +08:00
|
|
|
|
</body>
|
|
|
|
|
|
</html>
|