-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathkeys.html
More file actions
82 lines (79 loc) · 3.34 KB
/
keys.html
File metadata and controls
82 lines (79 loc) · 3.34 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>流水明细</title>
<link href="./css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" href="./css/search-form.css">
</head>
<body>
<div>
<div class="digital">
<!-- 中间表格部分 S-->
<table width="100%" id="userImportTable" border="0" cellpadding="0" cellspacing="0">
<thead>
<tr>
<th>厂家</th>
<th>型号</th>
<th>名称</th>
<th>批次号</th>
<th>操作</th>
<th>数量</th>
<th>日期</th>
</tr>
</thead>
<tbody>
<tr><td colspan="7">
<div class="reminder"><p>没有检索到数据</p></div>
</td></tr>
</tbody>
<tfoot>
<tr>
<th colspan="7" height="30">
<div class="userImportTableBottom">
<div class="dataTablesInfo" role="status" aria-live="polite">
<button class="showDatasBtn" onclick="addDatas()">添加数据</button>
</div>
<!--显示页码数,前翻页,后翻页,当前页码-->
<div class=" tablePageinate">
</div>
<!--动态搜索框-->
<section class="container">
<form style="position: relative" onsubmit="submitFn(this, event);">
<div class="search-wrapper">
<div class="input-holder">
<input type="text" class="search-input" placeholder="格式: YYYY-m-d" />
<button class="search-icon" onclick="searchToggle(this, event);"><span></span></button>
</div>
<span class="close" onclick="searchToggle(this, event);"></span>
</div>
</form>
</section>
<!--可选择每页暂时数据条数-->
<div class="digitalLength" >
<label>每页显示
<select name="tablesLength" class="tablesLength" onchange="changePages(this.value)"></select>
</label>
</div>
<!--消除浮动效果,防止影响后面的布局-->
<div class="clearBoth"></div>
</div>
</th>
</tr>
</tfoot>
</table>
<!-- 中间表格部分 E-->
</div>
</div>
</body>
<script src="./js/jquery-1.12.3.js"></script>
<script src="./js/html5hiv.min.js"></script>
<script src="./js/jsoner.js"></script>
<script src="./js/config.js"></script>
<script src="./js/link.js"></script>
<script src="./js/data.js"></script>
<script src="./js/table.js"></script>
<script src="./js/searchBar.js"></script>
<script src="./js/init.js"></script>
</html>