index.php
1.13 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
<?php $this->load->view('common/header'); ?>
<body>
<div id="tab" class="HuiTab">
<div class="tabBar clearfix" style="background-color:#e8e8e8">
<span>尽调报告</span>
<span>资料清单</span>
</div>
<div class="tabCon">
<?php
if($clientUnitOutputVO->jobType == 1){ //打工类
$this->load->view('work/尽调报告/打工');
} else { // 经营类
$this->load->view('work/尽调报告/法人');
}
?>
</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});
uploadList();
</script>
</body>
</html>