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
| <!DOCTYPE html>
| <html lang="en">
| <head>
| <meta charset="UTF-8">
| <meta name="viewport" content="width=device-width, initial-scale=1.0">
| <title>Document</title>
| <link rel="stylesheet" href="../style/equipment-history.css">
| <script src='../../lib/jquery.js'></script>
| <script src='../js/equipment-history.js'></script>
| </head>
| <body>
| <div class='equipment-history-box'>
| <table>
| <thead>
| <tr>
| <th>序号</th>
| <th>报警人</th>
| <th>联系电话</th>
| <th>事发地址</th>
| <th>报警内容</th>
| <th>处理时间</th>
| <th>是否处理</th>
| <th>处理人</th>
| </tr>
| </thead>
| <tbody>
| </tbody>
| </table>
| </div>
| </body>
| </html>
|
|