<%@ 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>
|
<script type="text/javascript"
|
src="${ctx}/static/jquery/jquery-3.1.0.min.js"></script>
|
<script>
|
function addinfo() {
|
window.open("${ctx}/Config/minche",self);
|
}
|
</script>
|
<title>添加机器</title>
|
<style type="text/css">
|
* {
|
padding: 0px;
|
margin: 0px;
|
font-family: "microsoft yahei", "Helvetica Neue", Helvetica, Arial,
|
sans-serif;
|
}
|
|
#Top {
|
display: block;
|
margin-bottom: 10px;
|
padding: 5px;
|
padding-left: 6px;
|
padding-right: 15px;
|
line-height: 22px;
|
/* border-left: 5px solid #15c142; */
|
border-radius: 0 2px 2px 0;
|
background-color: #f2f2f2;
|
}
|
|
.btn {
|
height: 35px;
|
line-height: 35px;
|
background-color: #0dc316;
|
padding: 0 15px;
|
color: #fff;
|
border: none;
|
border-radius: 2px;
|
}
|
|
#Table_Minche thead tr {
|
background-color: #f2f2f2;
|
}
|
|
#Table_Minche td {
|
border: 1px solid #f2f2f2;
|
height: 20px;
|
line-height: 20px;
|
padding: 9px 15px 9px 15px;
|
}
|
</style>
|
</head>
|
<body>
|
<div class="content-wrapper" style="background-color: white;">
|
<section class="content-header"></section>
|
<section class="content container-fluid">
|
<div id="Top">
|
<button class="btn" onclick="addinfo()">批量启动</button>
|
<button class="btn" style="background-color: #fd5f56;"
|
onclick="delAll()">批量删除</button>
|
<button class="btn"
|
onclick="x_admin_show('添加用户','./member-add.html',600,400)">添加</button>
|
<span style="float: right; line-height: 40px">共有机器:0 台</span>
|
</div>
|
<%-- <div class="modal fade" id="add-fix-info" tabindex="-1" role="dialog"
|
aria-labelledby="myModalLabel" aria-hidden="true">
|
<div class="modal-dialog">
|
<div class="modal-content" style="width: 800px;">
|
<div class="modal-header">
|
<button type="button" class="close" data-dismiss="modal"
|
aria-hidden="true" data-backdrop="static">×</button>
|
<h3 class="modal-title" id="myModalLabel"
|
style="font-weight: bolder;">当前订单</h3>
|
</div>
|
<form class="form-horizontal" role="form" id="category_add"
|
action="${ctx}/identifymachine/modifyGlass" method="post">
|
<input type="hidden" id="add-fix" name="Ids">
|
<div class="modal-body">内容!!!</div>
|
<div class="modal-footer">
|
<button type="button" class="btn btn-default btn-lg"
|
data-dismiss="modal">关闭</button>
|
<button type="submit" class="btn btn-primary btn-lg"
|
id="addbtnsubmit">提交</button>
|
</div>
|
</form>
|
</div>
|
</div>
|
</div> --%>
|
<div style="margin-top: 20px;">
|
<table id="Table_Minche"
|
style="width: 100%; border-collapse: collapse; border-spacing: 0;">
|
<thead>
|
<tr>
|
<td style="text-align: center;"><input type="checkbox" /></td>
|
<td>ID</td>
|
<td>机器类型</td>
|
<td>任务ID</td>
|
<td>任务类型</td>
|
<td>MES状态</td>
|
<td>机器状态</td>
|
<td>原片包ID</td>
|
<td>铁架号</td>
|
<td>目的地</td>
|
<td>计划上片数量1</td>
|
<td>计划上片数量2</td>
|
<td>计划上片数量3</td>
|
<td>架上总数量</td>
|
<td>已上片数量</td>
|
<td>新原片包ID</td>
|
<td>新原片包内数量</td>
|
<td>原片宽</td>
|
<td>原片高</td>
|
<td>原片颜色</td>
|
<td>原片厚度</td>
|
<td>原片数量</td>
|
<td>铁架总厚度</td>
|
</tr>
|
</thead>
|
<tbody>${Minchesendhtml}
|
</tbody>
|
</table>
|
</div>
|
</section>
|
|
</div>
|
</body>
|
</html>
|