严智鑫
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
90
91
92
93
94
95
96
<%@ 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>Insert title here</title>
<!-- jQuery 3 -->
<script src="${ctx }/static/AdminLTE/bower_components/jquery/dist/jquery.min.js"></script>
<!-- Bootstrap 3.3.7 -->
<script src="${ctx }/static/AdminLTE/bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<!-- DataTables -->
<script src="${ctx }/static/AdminLTE/bower_components/datatables.net/js/jquery.dataTables.min.js"></script>
<script src="${ctx }/static/AdminLTE/bower_components/datatables.net-bs/js/dataTables.bootstrap.min.js"></script>
<!-- SlimScroll -->
<script src="${ctx }/static/AdminLTE/bower_components/jquery-slimscroll/jquery.slimscroll.min.js"></script>
<!-- FastClick -->
<script src="${ctx }/static/AdminLTE/bower_components/fastclick/lib/fastclick.js"></script>
<script type="text/javascript">
    $(document).ready(function(){
          var info = $("#info").attr("info");
          $("#infos").html(info);
          
    });
</script>    
</head>
<body style="padding: 20px;" >
<!-- Content Wrapper. Contains page content -->
      <div class="content-wrapper">
    <!-- Content Header (Page header) -->
        <section class="content-header">
              <h1>
            料架排序选择 
                <small>详情</small>
              </h1>
          <ol class="breadcrumb">
            <li><a href="${ctx }/shelfmanager/taskimport"><i class="fa fa-reply"></i>任务导入</a></li>
            <li class="active">详情</li>
          </ol>
        </section>
           <div id = "info" info = "${info}"></div>
    <div>
    <!-- Main content -->
    <section class="content container-fluid">
    <!-- 导航条 -->
    <div class="btn-group" role="group" aria-label="...">
          <a href="${ctx}/cutmanage/gettask/1" style="color:navy; font-size: 20px;font-weight: bolder;" class="btn btn-primary btn-lg" >返回上一级</a>
        <%-- <a href="${ctx}/shelfmanager/getChange" style="color:navy; font-size: 20px;font-weight: bolder;" class="btn btn-primary btn-lg" >优化调度</a> --%>
    </div>
    <div class="box-body">
    计算用时:${time}s
     <table class="table table-striped table-hover" style="font-size: 18px;" id="example2">
        <thead>
            <tr>
                <th>序列号</th>
                <th>落架顺序</th>
                <th>时间</th>
                <th>巅峰料架</th>
                <th>操作</th>
            </tr>
        </thead>
        <tbody>
            <c:forEach items="${optPatternes}" var="optPattern" varStatus="status">
                <tr>
                    <td>${status.index+1}</td>
                    <td>${optPattern.number}</td>
                    <td>${optPattern.time}分钟</td>
                    <td>${optPattern.total}</td>
                    <td><a href="${ctx}/shelfmanager/getSure/${optPattern.sort}/${optPattern.number}" class ="btn btn-success">确认</a></td>
                </tr>
            </c:forEach>
         </tbody>
    </table>
    </div>
    </section>
    </div>
    <!-- /.content -->
  </div>
  <!-- /.content-wrapper -->
  <!-- page script -->
<script>
  $(function () {
    $('#example2').DataTable({
      'paging'      : true,
      'lengthChange': false,
      'searching'   : false,
      'ordering'    : true,
      'info'        : true,
      'autoWidth'   : false
    })
  })
</script>
</body>
</html>