zm
2020-05-18 a18bfacbf56b401f6e0fdae8710fbca4df8cff77
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
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.w3.org/1999/xhtml">
<head>
    <meta charset="UTF-8"/>
    <title>在线模块</title>
    <!-- 最新版本的 Bootstrap 核心 CSS 文件 -->
    <link rel="stylesheet" href="static/bootstrap/css/bootstrap.min.css"/>
    <script src="static/jquery/jquery.min.js"></script>
    <script src="static/bootstrap/js/bootstrap.min.js"></script>
    <script src="static/jquery/jquery.blockUI.min.js"></script>
    <script src="static/jquery/jquery.blockUI-css.js"></script>
    <script src="static/common/jbase64.js"></script>
    <script src="static/common/common.js"></script>
    <script src="static/common/http.js"></script>
    <link rel="shortcut icon" href="static/images/logo.png">
 
    <style>
        .container-fluid {
            margin-top: 20px;
        }
 
        .table-responsive {
            margin-top: 30px;
        }
    </style>
</head>
<body>
<div class="container-fluid">
 
    <a  class="pull-right" href="index.html">返回首页</a>
 
 
    <div class="table-responsive">
        <table class="table table-bordered table-striped">
            <colgroup>
                <col class="col-xs-3"/>
                <col class="col-xs-3"/>
                <col class="col-xs-3"/>
                <col class="col-xs-3"/>
            </colgroup>
            <thead>
            <tr>
                <th>模块名称</th>
                <th>唯一标示</th>
                <th>模块地址</th>
                <th>管道名称</th>
            </tr>
            </thead>
            <tbody id="list">
            <tr>
                <td><span></span></td>
                <td><span></span></td>
                <td><span></span></td>
                <td><span></span></td>
            </tr>
            </tbody>
        </table>
    </div>
 
    <script src="static/model.js"></script>
 
 
</div>
</body>
</html>