-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapply_info.html
84 lines (84 loc) · 2.5 KB
/
apply_info.html
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
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8" />
<title>工具申请信息</title>
<link rel="stylesheet" href="style/basic.css">
<link rel="stylesheet" href="style/table_layout.css">
</head>
<body>
<nav>
<ul>
<li><a href="employee.html">员工管理</a></li>
<li><a href="tool.html">工具管理</a></li>
<li><a href="lend_record_admin.html">工具租借记录</a></li>
<li><a href="apply_info.html" class="selected">工具申请信息</a></li>
<li><a href="admin_Info.html">个人信息</a></li>
</ul>
</nav>
<div id="main_page">
<header>
<a href="login.html">仓库实时管理系统</a>
<span id="logout">退出</span>
</header>
<div id="content">
<table>
<caption>当前未操作申请信息</caption>
<thead>
<tr>
<th>申请号</th>
<th>员工号</th>
<th>工具号</th>
<th>工具所在公司</th>
<th>申请日期</th>
<th>申请时间</th>
<th>状态</th>
<th>操作</th>
<th>操作</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<table>
<caption>当前已同意申请信息</caption>
<thead>
<tr>
<th>申请号</th>
<th>员工号</th>
<th>工具号</th>
<th>工具所在公司</th>
<th>申请日期</th>
<th>申请时间</th>
<th>状态</th>
<th>操作</th>
<th>操作</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<table>
<caption>历史申请信息</caption>
<thead>
<tr>
<th>申请号</th>
<th>员工号</th>
<th>工具号</th>
<th>工具所在公司</th>
<th>申请日期</th>
<th>申请时间</th>
<th>状态</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<footer>© Copyright FastRepair 2016</footer>
</div>
<script type="text/javascript" src="./script/jquery-2.2.2.js"></script>
<script type="text/javascript" src="./script/md5.js"></script>
<script type="text/javascript" src="script/apply_info.js"></script>
</body>
</html>