<%@ 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>
|