| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <include file="public@header" />
- </head>
- <body>
- <div class="wrap js-check-wrap">
- <ul class="nav nav-tabs">
- <li><a href="{:url('activity/index')}">{:lang('ADMIN_ACTIVITY_LIST')}</a></li>
- <li ><a href="{:url('activity/add')}">添加活动</a></li>
- <li class="active"><a href="#">互选情况</a></li>
- </ul>
- <form class="well form-inline margin-top-20" method="get" action="{:url('books/allhuxuan',['id'=> $Request.param.id])}">
- 昵称:
- <input type="text" class="form-control" name="nick_name" style="width: 150px;" value="{:input('request.user_login/s','')}" placeholder="请输入昵称">
- <input type="submit" class="btn btn-primary" value="搜索" />
- <a class="btn btn-danger" href="{:url('books/allhuxuan',['id'=> $Request.param.id])}">清空</a>
- </form>
- <table class="table table-hover table-bordered">
- <thead>
- <tr>
- <th width="16">
- <label>
- <input type="checkbox" class="js-check-all" data-direction="x" data-checklist="js-check-x">
- </label>
- </th>
- <th width="50">ID</th>
- <th>昵称</th>
- <th>我的编号</th>
- <th>匹配的人</th>
- <th>我选的人</th>
- <th width="240">选择我的人</th>
- <th width="60">匹配状态</th>
- <th width="80">匹配时间</th>
-
- </tr>
- </thead>
-
- <tbody>
-
- <foreach name="books" item="vo">
- <tr>
- <td>
- <input type="checkbox" class="js-check" data-yid="js-check-y" data-xid="js-check-x" name="ids[]" value="{$vo.id}">
-
- </td>
-
- <td>{$vo.id}</td>
- <td>{$vo.user_nickname}</td>
- <td>{$vo.book_num}</td>
- <td>{$vo.match_name}</td>
- <td>{$vo.heart_name}</td>
- <td>{$vo.chooseme}</td>
- <td>
- <switch name="vo.status">
-
- <case value="1"><font style="color: red">待匹配</font></case>
- <case value="2"><font style="color: green"> 匹配成功 </font></case>
- <case value="3"><font style="color: #FF0080"> 匹配失败 </font></case>
- <case value="4"><font style="color: #daae0d"> 无效 </font></case>
- </switch>
- </td>
- <td>{$vo.match_at}</td>
-
-
- </tr>
- </foreach>
- </tbody>
-
- </table>
-
- <div class="pagination">{$page}</div>
- </div>
- <script src="__STATIC__/js/admin.js"></script>
- <script src="__STATIC__/js/layer/layer.js"></script>
- <!-- <script >
-
- function getPaike(id){
- var addUrl = "{:url('Books/showallme')}?id="+id;
- layer.open({
- type: 2, //1:页面层,2:iframe层,3:加载层,4:tips层。
- title: '选我的人',
- shadeClose: false, //不开启遮罩关闭,也就是说,点击弹出层其它地方不会关闭弹出框
- shade: 0.8, //遮罩
- area: ['780px', '500px'],
- content: addUrl,
- end: function () { //最后执行reload
- location.reload();
- }
- });
- }
- </script> -->
- </body>
- </html>
|