-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (110 loc) · 5.17 KB
/
index.html
File metadata and controls
116 lines (110 loc) · 5.17 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>流水账</title>
<link href="./css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="./css/animate.min.css">
<link rel="stylesheet" href="./dist/rmodal-no-bootstrap.css" type="text/css" />
<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>
<th><span title="切换操作" style="cursor: pointer" onclick="operatToggle()">操作</span></th>
</tr>
</thead>
<tbody>
<tr><td colspan="8"><div class="reminder"><p>没有检索到数据</p></div></td></tr>
</tbody>
<tfoot>
<tr>
<th colspan="8" 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="格式: 厂家&型号&名称" />
<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>
<!--模态窗口-->
<div id="modal" class="modal">
<div class="modal-dialog animated">
<div class="modal-content">
<form class="form-horizontal" method="get">
<div class="modal-header">
<strong></strong>
</div>
<div class="modal-body">
<div class="form-group">
<div class="input-group col-xs-7 mb">
<input placeholder="批次号..." type="text" name="keys" class="form-control" />
</div>
<div class="input-group col-xs-7 mb">
<input placeholder="数量..." type="text" name="amounts" class="form-control" />
</div>
<div class="input-group col-xs-7">
<input placeholder="时间: m-d" type="text" name="dates" class="form-control" />
</div>
</div>
</div>
<div class="modal-footer">
<button class="btn btn-default" type="button" onclick="modal.close(0);">取消</button>
<button class="btn btn-primary" type="button" onclick="modal.close(1);">确认</button>
</div>
</form>
</div>
</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="./dist/rmodal.js"></script>
<script src="./js/searchBar.js"></script>
<script src="./js/init.js"></script>
</html>