index.html 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <include file="public@header" />
  2. </head>
  3. <body>
  4. <div class="wrap">
  5. <ul class="nav nav-tabs">
  6. <li class="active"><a >手动充值{$configpub['name_coin']}列表</a></li>
  7. <li><a href="{:url('Manual/add')}">充值</a></li>
  8. </ul>
  9. <form class="well form-inline margin-top-20" name="form1" method="post" action="">
  10. 提交时间:
  11. <input class="form-control js-bootstrap-date" name="start_time" id="start_time" autocomplete="off" value="{:input('request.start_time')}" aria-invalid="false" style="width: 110px;"> -
  12. <input class="form-control js-bootstrap-date" name="end_time" id="end_time" autocomplete="off" value="{:input('request.end_time')}" aria-invalid="false" style="width: 110px;">
  13. 关键字:
  14. <input class="form-control" type="text" name="uid" style="width: 200px;" value="{:input('request.uid')}"
  15. placeholder="请输入会员ID、靓号">
  16. <input type="button" class="btn btn-primary" value="搜索" onclick="form1.action='{:url('Manual/index')}';form1.submit();"/>
  17. <input type="button" class="btn btn-success" value="导出" onclick="form1.action='{:url('Manual/export')}';form1.submit();"/>
  18. <div style="margin-top:10px">
  19. 总点数:{$coin} (根据筛选条件统计)
  20. </div>
  21. </form>
  22. <table class="table table-hover table-bordered">
  23. <thead>
  24. <tr>
  25. <th>ID</th>
  26. <th>管理员</th>
  27. <th>会员(ID)</th>
  28. <th>充值点数</th>
  29. <th>IP</th>
  30. <th>时间</th>
  31. </tr>
  32. </thead>
  33. <tbody>
  34. <foreach name="lists" item="vo">
  35. <tr>
  36. <td>{$vo.id}</td>
  37. <td>{$vo['admin']}</td>
  38. <td>{$vo['userinfo']['user_nicename']} ({$vo['touid']})</td>
  39. <td>{$vo['coin']}</td>
  40. <td>{$vo['ip']}</td>
  41. <td>{:date('Y-m-d H:i:s',$vo['addtime'])}</td>
  42. </tr>
  43. </foreach>
  44. </tbody>
  45. </table>
  46. <div class="pagination">{$page}</div>
  47. </div>
  48. <script src="__STATIC__/js/admin.js"></script>
  49. </body>
  50. </html>