廖井涛
2025-06-06 32e8ae44d542d6f6d2dc82896f5ffe58ce695889
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
<%@ 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>
                                        &nbsp;&nbsp;&nbsp;当前产线生产任务 <font color="red;">未完成</font>,
                                        请在任务完成后进入单机模式!
                                    </h2>
                                </div>
                            </div>
                        </td>
                    </tr>
                </table>
            </section>
        </div>
    </div>
</body>
</html>