廖井涛
2025-06-06 32e8ae44d542d6f6d2dc82896f5ffe58ce695889
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<c:set var="ctx" value="${pageContext.request.contextPath}"/>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<script src="${ctx}/static/jquery/jquery-1.9.1.min.js" type="text/javascript"></script>
<script language="javascript" type="text/javascript" src="${ctx}/static/util.js"></script>
<title>调度页面</title>
</head>
<body>
<div class="content-wrapper">
    <!-- Content Header (Page header) -->
    <div>
        <section class="content-header">
        </section>
    </div>
    <div>
    <!-- Main content -->
    <section class="content container-fluid">
    <div class="box" style="margin-top: 20px;">
           <div class="box-header" align="center">
               <h3 class="box-title">调度状态</h3>
           </div>
         <div style="overflow: auto;height:650px;" class="box-body no-padding">
        <table class="table table-striped" style="font-size: medium; width: 100%;" id="table">
            <thead>
                <tr>
                    <th width="40%" align="center">任务描述</th>
                    <th align="left">任务状态</th>
                    <th width="15%" align="center">开始时间</th>
                    <th width="15%" align="center">上片位号</th>
                    <th width="15%" align="center">库位号</th>
                </tr>
            </thead>
            <tbody>${disPatchStateHtml}</tbody>
       </table>
       </div>
    </div>
    </div>
     </section>
    </div>
    <!-- /.content -->
  </div>
</body>
</html>