index.php 2.35 KB
<?php $this->load->view('common/header'); ?>

<body>
    <div class="page-container">
        <div class="body mt-20">
            <table class="table table-border table-bordered table-bg" id="table">
                <thead class="text-c">
                    <tr>
                        <th width="68px">操作</th>
                        <th>客户编号</th>
                        <th>姓名</th>
                        <th>身份证</th>
                        <th>手机号</th>
                        <th>录入时间</th>
                    </tr>
                </thead>
                <tbody class="text-c">
                    <tr>
                        <td>
                            <span class="dropDown dropDown_hover">
                                <button class="btn radius size-M">请选择 <i class="Hui-iconfont">&#xe6d5;</i></button>
                                <ul class="dropDown-menu menu radius box-shadow">
                                    <li><a href="javascript:;" onclick="creatIframe('/user/info', '查看详细')">查看详细</a></li>
                                </ul>
                            </span>
                        </td>
                        <td>1001</td>
                        <td>张三</td>
                        <td>333333333333333333</td>
                        <td>13333333333</td>
                        <td>2018-01-01 00:00:00</td>
                    </tr>
                    <tr>
                        <td>
                            <span class="dropDown dropDown_hover">
                                <button class="btn radius size-M">请选择 <i class="Hui-iconfont">&#xe6d5;</i></button>
                                <ul class="dropDown-menu menu radius box-shadow">
                                    <li><a href="javascript:;" onclick="creatIframe('/user/info', '查看详细')">查看详细</a></li>
                                </ul>
                            </span>
                        </td>
                        <td>1002</td>
                        <td>张三</td>
                        <td>333333333333333333</td>
                        <td>13333333333</td>
                        <td>2018-01-01 00:00:00</td>
                    </tr>
                </tbody>
            </table>
        </div>
    </div>
    <?php $this->load->view('common/footer'); ?>
</body>
<html>