| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <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('matchmaker/adminMatchmakerUser/index')}">
- 真实姓名:
- <input class="form-control" type="text" name="realname" style="width: 200px;" value="{:input('request.realname')}"
- 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('matchmaker/adminMatchmakerUser/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>身高CM</th>
- <th>体重KG</th>
- <th>{:lang('ACTIONS')}</th>
- </tr>
- </thead>
- <tbody>
- <foreach name="list" item="vo">
- <tr>
- <td>{$vo.id}</td>
- <td>{$vo['realname']}</td>
- <td>{$vo['mobile']}</td>
- <td>{$vo['matchmaker']['name']}</td>
- <td>{$vo['sex'] == 1 ? '男' : '女'}</td>
- <td>{:date('Y-m-d',$vo['birthday'])}</td>
- <td>{$vo['high'] == 0 ? '未知' : $vo['high']}</td>
- <td>{$vo['weight'] == 0 ? '未知' : $vo['high']}</td>
- <td>
- <a class="btn btn-xs btn-primary" href="javascript:detail({$vo.id})">详情</a>
- </td>
- </tr>
- </foreach>
- </tbody>
- </table>
- <div class="pagination">
- {$page}
- <li class="page-item"><span>共{$total}条</span></li>
- </div>
- </form>
- </div>
- <script src="__STATIC__/js/admin.js"></script>
- <script>
- function reloadPage(win) {
- win.location.reload();
- }
- function detail(id) {
- parent.openIframeLayer("/matchmaker/admin_matchmaker_user/show/id/"+id+".html",'详情',{});
- }
- </script>
- </body>
- </html>
|