-
Notifications
You must be signed in to change notification settings - Fork 0
/
production_execution.html
67 lines (56 loc) · 1.97 KB
/
production_execution.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>生产管理</title>
<link href="css/bootstrap.min14ed.css?v=3.3.6" rel="stylesheet">
<link href="css/font-awesome.min93e3.css?v=4.4.0" rel="stylesheet">
<link href="css/style.min862f.css?v=4.1.0" rel="stylesheet">
<link rel="stylesheet" href="css/bootstrap-table.css">
<link rel="stylesheet" href="css/plugins/sweetalert/sweetalert2.css">
</head>
<style>
body {
margin: 10px 5px;
}
button {
margin-left: 2%;
}
.shadow_box:hover {
background: rgba(9, 7, 7, 0.24);
box-shadow: 5px 5px 20px #150b0b82
}
</style>
<body>
<div style="margin-top: 10%" class="center-block">
<div class="col-md-5 col-md-offset-1 shadow_box" id="to_be_received">
<div class="widget navy-bg p-lg text-center" style="height: 400px;">
<div class="m-b-md text-center" style="margin-top:15%">
<i class="fa fa-spinner fa-spin fa-5x"></i>
<h1>待领取</h1>
</div>
</div>
</div>
<div class="col-md-5 shadow_box" id="received">
<div class="widget lazur-bg p-lg text-center" style="height: 400px;">
<div class="m-b-md text-center" style="margin-top:15%">
<i class="fa fa-check fa-spin fa-5x"></i>
<h1>已领取</h1>
</div>
</div>
</div>
</div>
<script src="js/jquery.min.js?v=2.1.4"></script>
<script src="js/bootstrap.min.js?v=3.3.6"></script>
<script src="js/bootstrap-table.js"></script>
<script src="js/plugins/bootstrap-table/bootstrap-table-mobile.min.js"></script>
<script src="js/plugins/bootstrap-table/locale/bootstrap-table-zh-CN.min.js"></script>
<script type="text/javascript" src="http://tajs.qq.com/stats?sId=9051096"
charset="UTF-8"></script>
<script src="js/plugins/sweetalert/sweetalert2.js"></script>
<script src="js/plugins/validate/jquery.validate.min.js"></script>
<script src="js/plugins/validate/messages_zh.min.js"></script>
<script src="js/mes/public/publicURL.js"></script>
<script src="js/all/production_execution.js"></script>
</body>
</html>