廖井涛
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
<%@ 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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link href="${ctx}/static/styles/default.css" type="text/css" rel="stylesheet" />
<script src="${ctx}/static/holder.js" type="text/javascript"></script>
<script language="javascript" type="text/javascript" src="${ctx}/static/util.js"></script>  
<script type="text/javascript" src="${ctx}/static/jquery/jquery-3.1.0.min.js"></script>
<title>上片位</title>
<script type="text/javascript">
    var interval = setInterval('refreshStatus()', 20000);
 
    // 设备页面自动刷新
    function refreshStatus() {
        window.location.reload();
 
    }
 
    // 停止页面自动刷新
    function disableAutoRefresh() {
        clearInterval(interval);
    }
 
    function setRange() {
        disableAutoRefresh();
        $('#modifyRangeModal').modal('toggle');
    }
 
    function setdata() {
        disableAutoRefresh();
        $('#modifyRangeModal1').modal('toggle');
    }
 
     /**
      * 添加固定料架信息
      */
      function modifyraw(){
              disableAutoRefresh()
             $("#add-fix-info").modal('show');
     }
     
     
    /* var text = document.getElementById("floorInput");
    text.onkeyup = function(){
    this.value=this.value.replace(/\D/g,'');
        if(text.value>2){
          text.value = 2;
        }
    } */
</script>
</head>
<body>
    <!-- Content Wrapper. Contains page content -->
    <div class="content-wrapper">
        <!-- Content Header (Page header) -->
        <section class="content-header">
            <h1>
                测量设置
                <!-- <small>测量</small> -->
            </h1>
            <ol class="breadcrumb">
                <li><a href="#"><i class="fa fa-dashboard"></i> 测量</a></li>
            </ol>
        </section>
 
        <!-- Main content -->
        <section class="content container-fluid">
 
            <!--------------------------
        | Your Page Content Here |
        -------------------------->
            <fieldset>
                 <legend>测量详情</legend>
        <table class="table table-striped table-hover">
            <thead><tr>
                <th>#</th>
                <th>批次编号</th>
                <th>实测长宽(mm)</th>
                <th>对比长宽(mm)</th>
                <th>误差值</th>
                <th>状态</th>
                <th>测量台</th>
            </tr></thead>
            <tbody>${identifyDetailHtml}</tbody>
        </table>
            </fieldset>
        </section>
        <!-- /.content -->
    </div>
</body>
</html>