realtimemain.html 3.15 KB
<!DOCTYPE html>
<html  lang="zh" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <!--360浏览器优先以webkit内核解析-->
    <title>概况</title>
    <link rel="shortcut icon" href="favicon.ico">
</head>

<body class="gray-bg">
    <div class="col-sm-6" style="padding:5px 5px 10px 5px;">
        <div class="float-e-margins">
            <form>
                <div>
                    <div id="chart2" class="flot-chart1">
                        <table border="1">
                            <tr th:border="1">
                                <td colspan="4"><font size="32" color="#f0ffff">出入库实时滚动报表</font></td>
                            </tr>
                            <tr th:border="1">
                                <td>入库报表1</td>
                            </tr>
                            <tr th:border="1">
                                <td>序号</td>
                                <td>机身物料号</td>
                                <td>状态</td>
                                <td>堆垛机实时运行状态</td>
                                <td>库位号</td>
                            </tr>
                            <tr th:border="1" th:each="itemReceipt : ${itemReceipts}">
                                <td th:text="${itemReceipt.taskNo}"></td>
                                <td th:text="${itemReceipt.materialName}"></td>
                                <td th:text="${itemReceipt.taskStatusCn}"></td>
                                <td th:text="${itemReceipt.taskStatusDesc}"></td>
                                <td th:text="${itemReceipt.fromLocation}"></td>
                            </tr>
                            <tr th:border="1">
                                <td>出库报表</td>
                            </tr>
                            <tr th:border="1">
                                <td>序号</td>
                                <td>机身物料号</td>
                                <td>状态</td>
                                <td>堆垛机实时运行状态</td>
                                <td>库位号</td>
                            </tr>
                            <tr th:border="1" th:each="itemShipment : ${itemShipments}">
                                <td th:text="${itemShipment.taskNo}"></td>
                                <td th:text="${itemShipment.materialName}"></td>
                                <td th:text="${itemShipment.taskStatusCn}"></td>
                                <td th:text="${itemShipment.taskStatusDesc}"></td>
                                <td th:text="${itemShipment.toLocation}"></td>
                            </tr>
                        </table>
                    </div>
                </div>
            </form>
        </div>
    </div>

<script th:src="@{/js/jquery.min.js}"></script>
<script th:src="@{/js/bootstrap.min.js}"></script>
<script>
    $(function () {
    });
</script>
<style>
    table{
        background-color: #44a9ff;
        color: white;
        border: 1px;
        width: 100%;
    }
</style>
</body>
</html>