风险识别.php
1.88 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
<?php $this->load->view('common/header'); ?>
<body>
<?php $this->load->view('user/header'); ?>
<div id="tab" class="HuiTab">
<div class="tabBar clearfix" style="background-color:#e8e8e8">
<span>本平台起诉</span>
<span>数据交叉验证</span>
<span>多头借贷</span>
<span>黑名单</span>
</div>
<div class="tabCon">
<table class="table table-border table-bordered table-bg">
<thead class="text-c">
<tr>
<th width="68px">序号</th>
<th>订单编号</th>
<th>起诉日期</th>
<th>发起者</th>
<th>移交资料者</th>
<th>确认者</th>
<th>备注</th>
</tr>
</thead>
<tbody class="text-c">
<tr>
<td>1</td>
<td>12321321</td>
<td>2017-01-01</td>
<td>张三</td>
<td>李四</td>
<td>王五</td>
<td></td>
</tr>
</tbody>
</table>
</div>
<div class="tabCon">数据交叉验证</div>
<div class="tabCon">多头借贷</div>
<div class="tabCon">黑名单</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});
</script>
</body>
</html>