YNUtdPlatform/hybrid/html/planAndRealName/planAndRealName.html

107 lines
4.7 KiB
HTML
Raw Normal View History

2024-09-29 10:19:21 +08:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" media="screen" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" media="screen" href="css/dataTables.bootstrap.min.css">
<link rel="stylesheet" type="text/css" media="screen" href="./layui/css/layui.css">
<link rel="stylesheet" type="text/css" media="screen" href="css/data_table_setting.css">
<link rel="stylesheet" type="text/css" media="screen" href="css/planAndRealName.css">
</head>
<body>
<div>
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12">
<form class="layui-form" style="margin-top: 1%" onsubmit="return false" id="searchDiv">
<input type="hidden" id="dataType"/>
<div class="layui-form-item" style="display: flex; align-items: center;">
<input type="text" class="layui-input" style="width: 20%;margin-right: 20px;" id="currentDay" lay-filter="currentDay" placeholder="请选择日期">
<button id="searchBt" class="layui-btn layui-btn-sm" ><i class="layui-icon">&#xe615;</i>查询</button>
</div>
</form>
<div id="proTypeSwitch">
<div>
<div class="switch switch-css" style="border-right: 1px solid #E4E4E4">在建项目情况</div>
<div class="switch">遗留(收尾)项目情况</div>
</div>
</div>
<div id="proTypeSwitch1">
<div style="color: #F56C6C;font-size: 24px;font-weight: 600;">作业计划与实名制管控情况</div>
</div>
<div id="proTypeSwitch2">
<img src="img/prompt.png" id="tip" width="20px" style="cursor:pointer;">
<span style="color: #F56C6C">数据截止时间每日20:00后锁定当日考勤率数据</span>
</div>
<div>
<div class="widget-body no-padding">
<table id="dt-table" class="table table-striped table-bordered table-hover" style="width: 100%">
<thead>
<tr>
<th style="width:1%">序号</th>
<th>分公司</th>
<th>在建工程数</th>
<th>分包数</th>
<th>班组数</th>
<th>在场人员数</th>
<th>特殊工种人数</th>
<th>在场人员超3天红灯情况红灯人数</th>
<th>在场人员超3天红灯情况红灯率(%)</th>
<th>在场特殊工种超3天红灯情况红灯人数</th>
<th>在场特殊工种超3天红灯情况红灯率(%)</th>
<th>今日考勤打卡人数</th>
<th>日计划上报人数</th>
<th>作业计划人员与实名制打卡人员偏差情况偏差人数</th>
<th>作业计划人员与实名制打卡人员偏差情况偏差率(%)</th>
<th>日计划上报人员打卡人数</th>
<th>在场人员打卡率(%)</th>
<th>日计划人员打卡率(%)</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</div>
</div>
</body>
</html>
<script type="text/javascript" src="js/jquery-3.6.0.js"></script>
<script type="text/javascript" src="js/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="js/dataTables.bootstrap.min.js"></script>
<script type="text/javascript" src="./layui/layui.js"></script>
<script type="text/javascript" src="js/uni.webview.1.5.5.js"></script>
<script type="text/javascript" src="js/planAndRealName.js"></script>
<script>
$.fn.dataTable.defaults.oLanguage = {
"sProcessing": "处理中...",
"sLengthMenu": "显示 _MENU_ 项结果",
"sZeroRecords": "没有匹配结果",
"sInfo": "显示第 _START_ 至 _END_ 项结果,共 _TOTAL_ 项",
"sInfoEmpty": "显示第 0 至 0 项结果,共 0 项",
"sInfoFiltered": "(由 _MAX_ 项结果过滤)",
"sInfoPostFix": "",
"sSearch": "搜索:",
"sUrl": "",
"sEmptyTable": "表中数据为空",
"sLoadingRecords": "载入中...",
"sInfoThousands": ",",
"oPaginate": {
"sFirst": "首页",
"sPrevious": "上页",
"sNext": "下页",
"sLast": "末页"
},
"oAria": {
"sSortAscending": ": 以升序排列此列",
"sSortDescending": ": 以降序排列此列"
}
};
</script>