风险识别.php 1.88 KB
<?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>