<!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" type="text/css"
|
th:href="@{../../static/plugins/layui/css/layui.css?v=2.5.5}">
|
<link rel="stylesheet" type="text/css"
|
th:href="@{../../static/admin/inout/style.css}">
|
|
<style type="text/css">
|
.qyzj-tabBox {
|
margin-top: 0px !important;
|
overflow: hidden;
|
width: 100%;
|
}
|
|
thead span {
|
font-weight: bold;
|
}
|
|
.i-titi {
|
height: 25px;
|
padding: 4px 0;
|
overflow: hidden;
|
color: #0C0C0C;
|
font-size: 20px;
|
line-height: 20px;
|
font-weight: bold;
|
}
|
|
.qyzj-tabBox .qyzj-table-tit {
|
border-bottom: 1px solid #53adce;
|
background: #eff4f6;
|
}
|
|
.qyzj-table-tit1 {
|
border-bottom: 1px solid #53adce;
|
background: #eff4f6;
|
}
|
|
.layui-table td {
|
font-weight: bold;
|
}
|
|
.layui-table th {
|
font-size: 18px;
|
font-weight: bold;
|
}
|
.rk-main {
|
margin: 0 10px;
|
}
|
.qyzj-con {
|
padding: 15px;
|
margin-top: 15px;
|
}
|
</style>
|
</head>
|
|
<body>
|
<div class="layui-clear">
|
<div class="rk-main">
|
<div class="qyzj-con radius-6 f1">
|
<h3 class="i-titi">
|
未完成流程
|
</h3>
|
<div class="qyzj-tabBox">
|
<table class="layui-table" lay-skin="nob" id="inoutList"
|
lay-filter="inoutList">
|
<thead>
|
<tr class="qyzj-table-tit1">
|
<th>单据号</th>
|
<th>类型</th>
|
<th>承运人</th>
|
<th>车牌号</th>
|
<th>当前流程</th>
|
<th>装卸仓库</th>
|
</tr>
|
</thead>
|
<tbody>
|
<!-- <tr class="qyzj-table-tit">-->
|
<!-- <th>07160001</th>-->
|
<!-- <th>入库</th>-->
|
<!-- <th>金来根</th>-->
|
<!-- <th>豫A12345</th>-->
|
<!-- <th>扦样化验</th>-->
|
<!-- <th>53号</th>-->
|
<!-- </tr>-->
|
<!-- <tr class="qyzj-table-tit">-->
|
<!-- <th>07160001</th>-->
|
<!-- <th>入库</th>-->
|
<!-- <th>金来根</th>-->
|
<!-- <th>豫A12345</th>-->
|
<!-- <th>扦样化验</th>-->
|
<!-- <th>53号</th>-->
|
<!-- </tr>-->
|
<!-- <tr class="qyzj-table-tit">-->
|
<!-- <th>07160001</th>-->
|
<!-- <th>入库</th>-->
|
<!-- <th>金来根</th>-->
|
<!-- <th>豫A12345</th>-->
|
<!-- <th>扦样化验</th>-->
|
<!-- <th>53号</th>-->
|
<!-- </tr>-->
|
</tbody>
|
</table>
|
</div>
|
</div>
|
<div class="qyzj-con radius-6 f2">
|
<h3 class="i-titi">
|
已完成流程
|
</h3>
|
<div class="qyzj-tabBox">
|
<table class="layui-table" lay-skin="nob" id="inoutCompleteList"
|
lay-filter="inoutCompleteList">
|
<thead>
|
<tr class="qyzj-table-tit1">
|
<th>单据号</th>
|
<th>类型</th>
|
<th>承运人</th>
|
<th>车牌号</th>
|
<th>装卸仓库</th>
|
<th>完成时间</th>
|
</tr>
|
</thead>
|
<tbody>
|
<!-- <tr class="qyzj-table-tit">-->
|
<!-- <th>07160001</th>-->
|
<!-- <th>入库</th>-->
|
<!-- <th>金来根</th>-->
|
<!-- <th>豫A12345</th>-->
|
<!-- <th>53号</th>-->
|
<!-- <th>2021-08-20 15:35</th>-->
|
<!-- </tr>-->
|
<!-- <tr class="qyzj-table-tit">-->
|
<!-- <th>07160001</th>-->
|
<!-- <th>入库</th>-->
|
<!-- <th>金来根</th>-->
|
<!-- <th>豫A12345</th>-->
|
<!-- <th>53号</th>-->
|
<!-- <th>2021-08-20 15:35</th>-->
|
<!-- </tr>-->
|
<!-- <tr class="qyzj-table-tit">-->
|
<!-- <th>07160001</th>-->
|
<!-- <th>入库</th>-->
|
<!-- <th>金来根</th>-->
|
<!-- <th>豫A12345</th>-->
|
<!-- <th>53号</th>-->
|
<!-- <th>2021-08-20 15:35</th>-->
|
<!-- </tr>-->
|
</tbody>
|
</table>
|
</div>
|
</div>
|
</div>
|
</div>
|
<script th:src="@{../../static/js/jquery.min.js}"></script>
|
<script th:src="@{../../static/plugins/layui/layui.js}"></script>
|
<script th:inline="javascript">
|
//定义变量
|
var type = [[${type}]];
|
var deptId = [[${deptId}]];
|
var mapProgress = [[${mapProgress}]];
|
var mapDept = [[${mapDept}]];
|
</script>
|
<script th:src="@{../../static/js/igds-common.js}"></script>
|
<script th:src="@{../../static/admin/inout/inout-progress.js}"></script>
|
</body>
|
</html>
|