-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapply.html
52 lines (52 loc) · 1.63 KB
/
apply.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
<!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="apply_record.html">工具申请记录</a></li>
<li><a href="lend_record.html">工具借还记录</a></li>
<li><a href="apply.html" class="selected">工具查询与申请</a></li>
<li><a href="myInfo.html">个人信息</a></li>
</ul>
</nav>
<div id="main_page">
<header>
<a href="login.html">员工与工具信息管理系统</a>
<span id="logout">退出</span>
</header>
<div id="content">
<div class="search">
<span>筛选</span>
<input type="text" name="search_input" id="search_input" placeholder="输入关键字进行筛选"/>
<!--<input type="button" value="申请所选工具" />-->
</div>
<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>
<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.js"></script>
</body>
</html>