<%@ page contentType="text/html;charset=UTF-8" %>
|
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
|
<%@ taglib prefix="tags" tagdir="/WEB-INF/tags" %>
|
<c:set var="ctx" value="${pageContext.request.contextPath}"/>
|
|
<html>
|
|
<head>
|
<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 type="text/javascript" src="${ctx}/static/bootstrap/2.3.2/js/bootstrap.min.js"></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 language="javascript" type="text/javascript" src="${ctx}/static/util.js"></script>
|
<script type="text/javascript">
|
function modifyPort(type, id, port) {
|
$('#modifyPortModal').modal('toggle');
|
$('#portInput').val(port);
|
$('#modifyPortForm').attr('action', '${ctx}/device/modifyport/' + type + "/" + id);
|
}
|
</script>
|
</head>
|
<body>
|
<div class="content-wrapper">
|
<!-- Content Header (Page header) -->
|
<div>
|
<section class="content-header">
|
<h1>
|
玻璃膜系信息
|
<small></small>
|
</h1>
|
<ol class="breadcrumb">
|
<li><a href="#"><i class="fa fa-reply"></i>玻璃膜系信息</a></li>
|
<li class="active"></li>
|
</ol>
|
</section>
|
</div>
|
<div>
|
<!-- Main content -->
|
<section class="content container-fluid">
|
<div class="box box-info">
|
<div class="box-header with-border">
|
<h3 class="box-title">膜系信息</h3>
|
|
<div class="box-tools pull-right">
|
<button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i>
|
</button>
|
<button type="button" class="btn btn-box-tool" data-widget="remove"><i class="fa fa-times"></i></button>
|
</div>
|
</div>
|
<!-- /.box-header -->
|
<div class="box-body">
|
<div class="table-responsive">
|
<table class="table no-margin">
|
<thead>
|
<tr>
|
<th>ID</th>
|
<th>机械</th>
|
<th>次数</th>
|
|
</tr>
|
</thead>
|
<tbody>
|
<tr>
|
<td>仓储</td>
|
<td><span class="label label-success">${shelf}</span></td>
|
</tr>
|
<tr>
|
<td>上片机01</td>
|
<td><span class="label label-success">${loadMachine01}</span></td>
|
</tr>
|
<tr>
|
<td>测量台01</td>
|
<td><span class="label label-success">${identifyMachine01}</span></td>
|
</tr>
|
<tr>
|
<td>1#磨边机01</td>
|
<td><span class="label label-success">${grindEdgeMachine01}</span></td>
|
</tr>
|
<tr>
|
<td>1#磨边机02</td>
|
<td><span class="label label-success">${grindEdgeMachine02}</span></td>
|
</tr>
|
<tr>
|
<td>下片机01</td>
|
<td><span class="label label-success">${countMachine01}</span></td>
|
</tr>
|
|
</tbody>
|
</table>
|
</div>
|
<!-- /.table-responsive -->
|
</div>
|
<!-- /.box-body -->
|
<div class="box-footer clearfix">
|
<a href="${ctx}/device/deletedrop" class="btn btn-sm btn-info btn-flat pull-left">清空掉线情况</a>
|
<button type="button" class="btn btn-box-tool" ><i class="fa fa-plus"></i>
|
</button>
|
</div>
|
<!-- /.box-footer -->
|
</div>
|
</section>
|
</div>
|
<!-- /.content -->
|
</div>
|
<!-- /.content-wrapper -->
|
</body>
|
</html>
|
|
<%-- <form action="${ctx}/mission/addcolor" method="post" class="form-horizontal" id="inputForm">
|
|
<div class="control-group">
|
<label class="control-label" for="numberInput">编号名称</label>
|
<div class="controls">
|
<input type="text" id="numberInput" name="name" placeholder="编号名称">
|
</div>
|
</div>
|
|
<div class="form-actions">
|
<button type="submit" class="btn btn-large btn-primary">保存</button>
|
<button type="button" class="btn btn-large" onclick="history.back()">取消</button>
|
</div>
|
</form> --%>
|
|