-
Notifications
You must be signed in to change notification settings - Fork 0
/
add_process_template.html
183 lines (161 loc) · 6.19 KB
/
add_process_template.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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<!DOCTYPE html>
<html>
<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">
<link rel="stylesheet" href="css/mes/process/add_process_template.css">
</head>
<body>
<div class="row">
<h1>新增流程模板:</h1>
</div>
<div class="row">
<!--模板名称-->
<div class="col-md-12" id="name_row">
<form class="form-horizontal">
<div class="form-group">
<label id="name_label" for="process_template_name"
class="control-label col-md-3 h3">模板名称:</label>
<div class="col-md-9">
<input type="text" class="form-control" id="process_template_name">
</div>
</div>
</form>
</div>
</div>
<div class="row">
<div class="col-md-12" id="description_row">
<form class="form-horizontal">
<div class="form-group text-left">
<label id="description_label" for="process_template_description"
class="control-label col-md-3 h3">模板描述:</label>
<div class="col-md-9">
<textarea class="form-control" id="process_template_description" rows="10"></textarea>
</div>
</div>
</form>
</div>
</div>
<!--模板名称-->
<!--模板描述-->
<!--模板描述-->
<div class="row" id="operate_row">
<div class="col-md-2 col-md-offset-1">
<div class="sortable-list connectList agile-list" id="add_procedure">
<span class="sortable procedure_span">
<span class="agile-detail">
<span class="icon-font text-center-span"></span>
<a class="btn btn-success icon-font" json='{
"stepNum": "01",
"attr": []
}'>新增</a>
</span>
</span>
</div>
</div>
<div class="col-md-2 col-md-offset-2" id="dunk_div">
<div id="dunk" class="sortable-list connectList agile-list">
<span id="dunk_span">
<span class="agile-detail">
<a class="btn btn-danger icon-font"></a>
</span>
</span>
</div>
</div>
<div class="col-md-2 col-md-offset-2">
<button class="btn btn-lg icon-font btn-info" id="save_all_button"></button>
</div>
</div>
<div class="row" id="procedure_row">
<span class="sortable-list connectList agile-list" id="procedure_span">
<span class="sortable" id="start_span">
<a class="btn btn-success font-middle"></a>
</span>
<span class="sortable" id="end_span">
<span class="agile-detail">
<span class="icon-font text-center-span"></span>
<span class="btn btn-danger font-middle icon-font"></span>
</span>
</span>
</span>
</div>
<div id="addModal" class="modal fade " aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span
aria-hidden="true">×</span></button>
<h4 class="modal-title">工序设置</h4>
</div>
<div class="modal-body">
<div class="row">
<!--工序名-->
<div class="col-md-12">
<div class="form-group">
<div class="col-md-2">
<label for="procedure_name" class="h4">工序名:</label>
</div>
<div class="col-md-8">
<select id="procedure_name" class="form-control">
</select>
</div>
</div>
</div>
<!--工序名-->
<!--描述-->
<div class="col-md-12" id="modal_description_row">
<div class="form-group">
<div class="col-md-2">
<label for="procedure_description" class="h4">描述:</label>
</div>
<div class="col-md-8">
<p id="procedure_description" class="h4"></p>
</div>
</div>
</div>
<!--描述-->
<div class="col-md-12" id="attribute_set_row">
<div class="col-md-2">
<span class="h4">属性设置:</span>
</div>
</div>
<div class="row" id="edit_table_row">
<div class="col-md-12">
<div class="table-box">
<div id="toolbar">
<img id="insert_button" src="img/addButton.png" height="35px" width="35px"/>
</div>
<table id="attr_set_table"></table>
</div>
</div>
</div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">取消</button>
<button type="button" class="btn btn-primary" id="save_confirm_button">确定</button>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="js/jquery.min.js?v=2.1.4"></script>
<script type="text/javascript" src="js/bootstrap.min.js?v=3.3.6"></script>
<script type="text/javascript" src="js/bootstrap-table.js"></script>
<script src="js/jquery-ui-1.10.4.min.js"></script>
<script type="text/javascript"
src="js/plugins/bootstrap-table/bootstrap-table-mobile.min.js"></script>
<script type="text/javascript"
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 type="text/javascript" src="js/plugins/sweetalert/sweetalert2.js"></script>
<script type="text/javascript" src="js/plugins/validate/jquery.validate.min.js"></script>
<script type="text/javascript" src="js/plugins/validate/messages_zh.min.js"></script>
<script type="text/javascript" src="js/mes/public/publicURL.js"></script>
<script type="text/javascript" src="js/mes/process/add_process_template.js"></script>
</body>
</html>