<%@ 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>
|
<title>错误页面</title>
|
<script type="text/javascript">
|
$(document).ready(function(){
|
var allstatu = $("#allstatu").attr("allstatu");
|
var info = $("#info").attr("info");
|
$("#infos").html(info);
|
if(allstatu == 0){
|
$("#allstatus").attr("style","background-color:#f00");
|
}
|
});
|
</script>
|
</head>
|
<body>
|
<div class="content-wrapper">
|
<!-- Content Header (Page header) -->
|
<div>
|
<section class="content-header">
|
<h1>
|
提示 <small></small>
|
</h1>
|
<ol class="breadcrumb">
|
</ol>
|
</section>
|
<div id = "allstatu" allstatu = "${allstatu}"></div>
|
<div id = "info" info = "${info}"></div>
|
</div>
|
<div style="height: 500px;">
|
<!-- Main content -->
|
<section class="content container-fluid">
|
<table align="center" style="margin-top: 100px;">
|
<tr>
|
<td><img src="/gmms2/static/images/attention.png"></td>
|
<td>
|
<div>
|
<div style="color: red; font-size: xx-large;">请注意:</div>
|
<div>
|
<h2>
|
当前产线生产任务 <font color="red;">未完成</font>,
|
请在任务完成后进入单机模式!
|
</h2>
|
</div>
|
</div>
|
</td>
|
</tr>
|
</table>
|
</section>
|
</div>
|
</div>
|
</body>
|
</html>
|