index.html 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <include file="public@header" />
  2. </head>
  3. <body>
  4. <div class="wrap">
  5. <ul class="nav nav-tabs">
  6. <li class="active"><a >列表</a></li>
  7. </ul>
  8. <form class="well form-inline margin-top-20" method="post" action="{:url('auth/index')}">
  9. 审核状态:
  10. <select class="form-control" name="status">
  11. <option value="">全部</option>
  12. <volist name="status" id="v">
  13. <option value="{$key}" <if condition="input('request.status') neq '' && input('request.status') eq $key">selected</if>>{$v}</option>
  14. </volist>
  15. </select>
  16. 提交时间:
  17. <input class="form-control js-bootstrap-date" name="start_time" id="start_time" value="{:input('request.start_time')}" aria-invalid="false" style="width: 110px;"> -
  18. <input class="form-control js-bootstrap-date" name="end_time" id="end_time" value="{:input('request.end_time')}" aria-invalid="false" style="width: 110px;">
  19. 用户ID:
  20. <input class="form-control" type="text" name="uid" style="width: 200px;" value="{:input('request.uid')}"
  21. placeholder="请输入会员ID">
  22. 关键字:
  23. <input class="form-control" type="text" name="keyword" style="width: 200px;" value="{:input('request.keyword')}"
  24. placeholder="请输入姓名、手机">
  25. <input type="submit" class="btn btn-primary" value="搜索">
  26. </form>
  27. <form method="post" class="js-ajax-form" >
  28. <table class="table table-hover table-bordered">
  29. <thead>
  30. <tr>
  31. <th>会员ID</th>
  32. <th>会员</th>
  33. <th>真实姓名</th>
  34. <th>手机号码</th>
  35. <th>身份证号</th>
  36. <th>审核状态</th>
  37. <th>提交时间</th>
  38. <th>处理时间</th>
  39. <th>{:lang('ACTIONS')}</th>
  40. </tr>
  41. </thead>
  42. <tbody>
  43. <foreach name="lists" item="vo">
  44. <tr>
  45. <td>{$vo.uid}</td>
  46. <td>{$vo['userinfo']['user_nicename']} </td>
  47. <td>{$vo['real_name']}</td>
  48. <td>{$vo['mobile']}</td>
  49. <td>{$vo['cer_no']}</td>
  50. <td>{$status[$vo['status']]}</td>
  51. <td>{:date('Y-m-d H:i',$vo['addtime'])}</td>
  52. <td>
  53. <if condition="$vo['status'] eq '0'" >
  54. 处理中
  55. <else/>
  56. {:date('Y-m-d H:i',$vo['uptime'])}
  57. </if>
  58. </td>
  59. <td>
  60. <a class="btn btn-xs btn-primary" href='{:url("auth/edit",array("uid"=>$vo["uid"]))}'>{:lang('EDIT')}</a>
  61. <a class="btn btn-xs btn-danger js-ajax-delete" href="{:url('auth/del',array('uid'=>$vo['uid']))}">{:lang('DELETE')}</a>
  62. </td>
  63. </tr>
  64. </foreach>
  65. </tbody>
  66. </table>
  67. <div class="pagination">{$page}</div>
  68. </form>
  69. </div>
  70. <script src="__STATIC__/js/admin.js"></script>
  71. </body>
  72. </html>