派单.php
2.3 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
<?php $this->load->view('common/header'); ?>
<body>
<div class="page-container">
<div class="panel panel-default">
<div class="panel-body">
<div class="row cl">
<div class="form-group col-sm-4 col-md-2">
<label>选择审批人员</label>
<span class="form-control select-box">
<select class="select" size="1">
<option>请选择</option>
<option value="1">张三</option>
</select>
</span>
</div>
</div>
</div>
</div>
<div class="panel panel-primary">
<div class="panel-header">分配概览</div>
<div class="panel-body text-c">
<table class="table table-border table-bordered table-bg">
<thead class="text-c">
<tr>
<th>审批人员</th>
<th>工单处理中(件)</th>
<th>工单已结束(件)</th>
</tr>
</thead>
<tbody class="text-c">
<tr>
<td>张三</td>
<td>1</td>
<td>5</td>
</tr>
<tr>
<td>张三</td>
<td>1</td>
<td>5</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
<div class="row cl pb-20 col-sm-12">
<div class="col-sm-offset-4 col-sm-2">
<button class="btn btn-warning btn-block" onclick="layer_close()">取消</button>
</div>
<div class="col-sm-2">
<button class="btn btn-primary btn-block" onclick="pass()">确认</button>
</div>
</div>
<?php $this->load->view('common/footer'); ?>
<script>
function pass() {
layer.alert('你已成功将该工单分配给审批专员', function () {
layer_close();
});
}
</script>
</body>
</html>