严智鑫
2025-11-13 945bc394f40d8af1072a53da9a94f24207124e6d
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<%@ page language="java" contentType="text/html; charset=utf-8"
    pageEncoding="utf-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<c:set var="ctx" value="${pageContext.request.contextPath}"/>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>上片任务</title>
 <link type="image/x-icon" href="${ctx}/static/images/favicon.ico" rel="shortcut icon">
<link href="${ctx}/static/bootstrap/2.3.2/css/bootstrap.min.css" type="text/css" rel="stylesheet" />
<link href="${ctx}/static/jquery-validation/1.11.1/validate.css" type="text/css" rel="stylesheet" />
<link href="${ctx}/static/styles/default.css" type="text/css" rel="stylesheet" />
<link href="${ctx}/static/bootstrap-datetimepicker/css/bootstrap-datetimepicker.min.css" type="text/css" rel="stylesheet" />
<link href="${ctx}/static/bootstrap-switch/css/bootstrap2/bootstrap-switch.css" type="text/css" rel="stylesheet" />
 
<script src="${ctx}/static/jquery/jquery-1.9.1.min.js" type="text/javascript"></script>
<script src="${ctx}/static/jquery-validation/1.11.1/jquery.validate.min.js" type="text/javascript"></script>
<script src="${ctx}/static/jquery-validation/1.11.1/messages_bs_zh.js" type="text/javascript"></script>
<script src="${ctx}/static/bootstrap-datetimepicker/js/bootstrap-datetimepicker.min.js" type="text/javascript"></script>
<script src="${ctx}/static/bootstrap-datetimepicker/js/locales/bootstrap-datetimepicker.zh-CN.js" type="text/javascript"></script>
<script src="${ctx}/static/holder.js" type="text/javascript"></script>
<script src="${ctx}/static/bootstrap-switch/js/bootstrap-switch.js" type="text/javascript"></script>
<script type="text/javascript">
    $(document).ready(function(){
          var info = $("#info").attr("info");
          $("#infos").html(info);
    });
</script>
</head>
<body>
<!-- Content Wrapper. Contains page content -->
      <div class="content-wrapper">
    <!-- Content Header (Page header) -->
    <div>
        <section class="content-header">
              <h1>
            上片任务信息
                <small></small>
              </h1>
          <ol class="breadcrumb">
            <li><a href="${ctx }/loadmachine/loadmachinerack"><i class="fa fa-reply"></i>上片机信息</a></li>
            <li class="active">任务信息</li>
          </ol>
          <div id = "info" info = "${info}"></div>
        </section>
           
    </div>
    <div>
    <!-- Main content -->
    <section class="content container-fluid">
    <br>
     <div class="pull-left">
        <a class="btn btn-success btn-middle " href="${ctx}/loadmachine/loadmachinerack">返回</a>
    </div>
    <br><br>
    <div style="height:600px; overflow-y: auto;">
     <table class="table table-striped table-hover" >
        <thead>
            <tr>
                <th>序列号</th>
                <th>状态</th>
                <th>创建时间</th>
                <th>开始时间</th>
                <th>完成时间</th>
                <th>上片机号</th>
            </tr>
        </thead>
        <tbody>
            <c:forEach items="${loadMachineTaskes}" var="loadMachineTask" varStatus="status">
                <tr>
                    <td>${status.index+1}</td>
                    <td>${loadMachineTask.state}</td>
                    <td>${loadMachineTask.createTime}</td>
                    <td>${loadMachineTask.startTime}</td>
                    <td>${loadMachineTask.completeTime}</td>
                    <td>${loadMachineTask.loadMachine.id}</td>
                </tr>
            </c:forEach>
         </tbody>
    </table>
    </div>
        </section>
    </div>
    <!-- /.content -->
  </div>
  <!-- /.content-wrapper -->
</body>
</html>