<!DOCTYPE html>
|
<html>
|
<head>
|
<meta charset="utf-8">
|
<title>大数据统计展示大屏</title>
|
<!-- 新 Bootstrap 核心 CSS 文件 -->
|
<link href="../kanban/css/bootstrap.min.css" rel="stylesheet">
|
<!-- jQuery文件。务必在bootstrap.min.js 之前引入 -->
|
<script src="../kanban/js/jquery.min.js"></script>
|
<!-- 最新的 Bootstrap 核心 JavaScript 文件 -->
|
<script src="../kanban/js/bootstrap.min.js"></script>
|
<link href="../kanban/css/iqc_check.css" rel="stylesheet" />
|
<script src="../kanban/js/mui.js"></script>
|
<link href="../kanban/css/iqctable.css" rel="stylesheet" />
|
|
</head>
|
<body>
|
<header>IQC待检看板</header>
|
|
|
<div class="head">
|
<div class="logo"></div>
|
<div class="logo_w">
|
<span class="logo_word"> 巨发电器 </span>
|
</div>
|
<div class="weather">
|
<span class="time" id="showTime"></span>
|
</div>
|
|
<script>
|
var t = null;
|
t = setTimeout(time,1000);//開始运行
|
function time()
|
{
|
clearTimeout(t);//清除定时器
|
dt = new Date();
|
var y=dt.getFullYear();
|
var mt=dt.getMonth()+1;
|
var day=dt.getDate();
|
var h=dt.getHours();//获取时
|
var m=dt.getMinutes();//获取分
|
var s=dt.getSeconds();//获取秒
|
document.getElementById("showTime").innerHTML = y+"年"+mt+"月"+day+"日 "+h+"时"+m+"分"+s+"秒";
|
t = setTimeout(time,1000); //设定定时器,循环运行
|
}
|
|
</script>
|
</div>
|
|
<div class="container m-20">
|
<div class="row">
|
<div style="margin-top: 0px; height: 160px;">
|
<div style="float: left;" class="m-20">
|
<div class="box2">
|
<div class="title">今日已检数:</div>
|
<div class="box2_con">
|
<span class="box2_word" id="d1"></span>
|
</div>
|
</div>
|
<div class="box2">
|
<div class="title">待检验数:</div>
|
<div class="box2_con">
|
<span class="box2_word" id="d2"></span>
|
</div>
|
</div>
|
<div class="box2">
|
<div class="title">1天未检验数:</div>
|
<div class="box2_con">
|
<span class="box2_word" id="d3"></span>
|
</div>
|
</div>
|
<div class="box2">
|
<div class="title">3天未检验数:</div>
|
<div class="box2_con">
|
<span class="box2_word" id="d4"></span>
|
</div>
|
</div>
|
<div class="box2">
|
<div class="title">急料数:</div>
|
<div class="box2_con">
|
<span class="box2_word" id="d5"></span>
|
</div>
|
</div>
|
</div>
|
</div>
|
<div class="box1">
|
<div class="box1_con">
|
<div class="tablebox">
|
<div class="tbl-header">
|
<table border="0" cellspacing="0" cellpadding="0">
|
<thead>
|
<tr>
|
<th>送检时间</th>
|
<th>收料通知单号</th>
|
<th>采购订单</th>
|
<th>作业单号</th>
|
<th>供应商</th>
|
<th>物料编号</th>
|
<th>物料名称</th>
|
<th>规格型号</th>
|
<th>到货数量</th>
|
<!-- <th>余量</th>-->
|
<!-- <th>颜色</th>-->
|
<th>状态</th>
|
<th>备注</th>
|
</tr>
|
</thead>
|
<tbody style="opacity: 0;">
|
|
</tbody>
|
</table>
|
</div>
|
|
<div class="tbl-body">
|
<table border="0" cellspacing="0" cellpadding="0">
|
<thead>
|
<tr>
|
<!-- <th>到货时间</th>
|
<th>到货单号</th>
|
<th>订单号</th>
|
<th>产品型号</th>
|
<th>供应商</th>
|
<th>存货编号</th>
|
<th>存货名称</th>
|
<th>规格型号</th>
|
<th>数量</th>
|
<th>余量</th>
|
<th>颜色</th>
|
<th>备注</th>
|
<th>状态</th> -->
|
|
<th>送检时间</th>
|
<th>收料通知单号</th>
|
<th>采购订单</th>
|
<th>作业单号</th>
|
<th>供应商</th>
|
<th>物料编号</th>
|
<th>物料名称</th>
|
<th>规格型号</th>
|
<th>到货数量</th>
|
<!-- <th>余量</th>-->
|
<!-- <th>颜色</th>-->
|
<th>状态</th>
|
<th>备注</th>
|
</tr>
|
</thead>
|
<tbody>
|
|
</tbody>
|
</table>
|
</div>
|
</div>
|
</div>
|
</div>
|
</div>
|
</div>
|
|
|
<footer>
|
<div class="logo_bottom"></div>
|
宁波广深科技有限公司(技术支持)
|
</footer>
|
|
<script th:inline="javascript">
|
var context = [[@{/}]];
|
var KANBAN_DATA=[[${KANBAN_DATA}]];
|
var FLOOR=[[${FLOOR}]];
|
//console.log(KANBAN_DATA)
|
document.title = 'IQC待检看板'+FLOOR+'楼'
|
</script>
|
<!-- <script type="text/javascript" src="../kanban/scripts/tablebox.js"></script> -->
|
<script type="text/javascript" src="../kanban/js/echarts.min.js"></script>
|
<script type="text/javascript" src="../kanban/scripts/iqc_check.js"></script>
|
</body>
|
</html>
|