电核.php
4.06 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
<?php $this->load->view('common/header'); ?>
<body>
<div class="cl pd-5 bg-1">
<span class="l">
<button class="btn btn-primary radius" onclick="loadIframe('<?=site_url('work/check/6/'.$id)?>', '录入信用报告');">录入信用报告</button>
<button class="btn btn-primary radius" onclick="loadIframe('<?=site_url('work/check/7/'.$id)?>', '网查筛查');">网查筛查</button>
<button class="btn btn-primary radius" onclick="loadIframe('<?=site_url('work/check/8/'.$id)?>', '电核');">电核</button>
<button class="btn btn-primary radius" onclick="loadIframe('<?=site_url('work/check/9/'.$id)?>', '受理意见');">受理意见</button>
</span>
</div>
<div id="tab" class="HuiTab">
<div class="tabBar clearfix" style="background-color:#e8e8e8">
<span>电核结果</span>
<span>电核记录</span>
</div>
<div class="tabCon">
<?php $this->load->view('/work/审批/电核结果'); ?>
</div>
<div class="tabCon pb-20">
<div class="cl pd-5 bg-1">
<span class="r">
<button class="btn btn-primary radius" onclick="add()">
<i class="Hui-iconfont"></i> 添加
</button>
</span>
</div>
<table class="table table-border table-bordered table-bg">
<thead class="text-c">
<tr>
<th>ID</th>
<th>电核时间</th>
<th>是否拨通</th>
<th>电核人</th>
<th>备注</th>
<th width="70px">操作</th>
</tr>
</thead>
<tbody class="text-c">
<tr>
<td>1</td>
<td>2018-01-01 00:00:00</td>
<td>是</td>
<td>张三</td>
<td>备注</td>
<td><a href="javascript:add();"><i class="Hui-iconfont"></i> 编辑<a></td>
</tr>
<tr>
<td>1</td>
<td>2018-01-01 00:00:00</td>
<td>是</td>
<td>张三</td>
<td>备注</td>
<td><a href="javascript:add();"><i class="Hui-iconfont"></i> 编辑<a></td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row cl pb-20 col-sm-12">
<div class="col-sm-offset-3 col-sm-2">
<button class="btn btn-warning btn-block">退回订单</button>
</div>
<div class="col-sm-2">
<button class="btn btn-danger btn-block" onclick="refuse()">拒绝</button>
</div>
<div class="col-sm-2">
<button class="btn btn-primary btn-block" onclick="loadIframe('<?=site_url('/work/check/9');?>', '审核意见');">通过</button>
</div>
</div>
<?php $this->load->view('common/footer'); ?>
<script>
function getQueryString(name) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
var r = window.location.search.substr(1).match(reg);
if (r != null) return unescape(r[2]); return null;
}
var index = getQueryString('tab');
$("#tab").Huitab({index: index});
function add() {
layer.open({
type: 2,
title: '电核记录',
shadeClose: true,
area: ['800px', '400px'],
content: '<?=site_url('work/telAdd')?>'
});
}
function refuse() {
layer.open({
type: 2,
title: '电核记录',
shadeClose: true,
area: ['800px', '400px'],
content: '<?=site_url('work/telRefuse')?>'
});
}
</script>
</body>
</html>