index.php 1012 Bytes
<?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 $this->load->view('work/尽调报告/打工'); ?>
            <!-- <?php $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>