订单详情.php
2.46 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
<?php $this->load->view('common/header'); ?>
<body>
<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">
<?php $this->load->view('work/申请信息/借款人信息'); ?>
<?php $this->load->view('work/申请信息/单位信息'); ?>
<?php $this->load->view('work/申请信息/联系人信息'); ?>
<?php $this->load->view('work/申请信息/贷款事项'); ?>
<?php $this->load->view('work/申请信息/其他'); ?>
</div>
<!-- 资料信息 -->
<div class="tabCon">
<?php $this->load->view('work/图片上传'); ?>
</div>
<!-- 处理进度 -->
<div class="tabCon">
<table class="table table-border table-bordered table-bg">
<thead class="text-c">
<tr>
<th>处理时间</th>
<th>处理人</th>
<th>处理事件</th>
<th>事件结果</th>
</tr>
</thead>
<tbody class="text-c">
<?php foreach ($operatorRecord as $k=>$v):?>
<tr>
<td colspan="4"><?=$v ? $v->description : ''?></td>
</tr>
<?php endforeach; ?>
<!--<tr>
<td>2018-01-01 00:00:00</td>
<td>门店人员 - 李四</td>
<td class="c-primary">审查</td>
<td class="c-warning">不通过</td>
</tr>-->
</tbody>
</table>
</div>
<!-- 订单进度 -->
<div class="tabCon">
<?php $this->load->view('work/订单进度'); ?>
</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>