index.html 2.5 KB
<include file="public@header"/>
</head>
<body>
<div class="wrap">
    <ul class="nav nav-tabs">
        <li class="active"><a>甲方列表</a></li>
    </ul>
    <form class="well form-inline margin-top-20" method="post" action="{:url('AdminPartA/index')}">
        姓名:
        <input class="form-control" type="text" name="user_login" style="width: 200px;" value="{:input('request.user_login')}"
               placeholder="请输入姓名">
        手机号:
        <input class="form-control" type="text" name="mobile" style="width: 200px;" value="{:input('request.mobile')}"
               placeholder="请输入手机号">
        <input type="submit" class="btn btn-primary" value="搜索"/>
        <a class="btn btn-danger" href="{:url('AdminPartA/index')}">清空</a>
    </form>
    <form method="post" class="js-ajax-form">
        <table class="table table-hover table-bordered">
            <thead>
            <tr>
                <th>ID</th>
                <th>姓名</th>
                <th>职称</th>
                <th>头像</th>
                <th>手机</th>
                <th>项目组</th>
                <th>公司名称</th>
                <th>子公司名称</th>
            </tr>
            </thead>
            <tbody>
            <notempty name="list">
                <foreach name="list" item="vo">
                    <tr>
                        <td>{$vo.id}</td>
                        <td>
                            {$vo.user_login}
                        </td>
                        <td>{$vo.position}</td>
                        <td>
                            <notempty name="vo.avatar">
                                <img width="25" height="25" src="{$host}{$vo.avatar}"/>
                                <else/>
                                <img width="25" height="25" src="/themes/admin_simpleboot3/public/assets/images/headicon.png">
                            </notempty>
                        </td>
                        <td>{$vo.mobile}</td>
                        <td>
                            <notempty name="vo.project_name">
                                {$vo.project_name}
                            </notempty>
                        </td>
                        <td>{$vo.company_name_head}</td>
                        <td>{$vo.company_name}</td>
                    </tr>
                </foreach>
            </notempty>
            </tbody>
        </table>
        <!--分页-->
        <div class="pagination">{$page}</div>
    </form>
</div>
<script src="__STATIC__/js/admin.js"></script>
</body>
</html>