index.html 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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('liverecord/index')}">
  9. 时间:
  10. <input class="form-control js-bootstrap-date" autocomplete="off" name="start_time" id="start_time" value="{:input('request.start_time')}" aria-invalid="false" style="width: 110px;"> -
  11. <input class="form-control js-bootstrap-date" autocomplete="off" name="end_time" id="end_time" value="{:input('request.end_time')}" aria-invalid="false" style="width: 110px;">
  12. 会员ID:
  13. <input class="form-control" type="text" name="uid" style="width: 200px;" value="{:input('request.uid')}"
  14. placeholder="请输入会员id">
  15. <input type="submit" class="btn btn-primary" value="搜索">
  16. </form>
  17. <form method="post" class="js-ajax-form" >
  18. <table class="table table-hover table-bordered">
  19. <thead>
  20. <tr>
  21. <th>编号</th>
  22. <th>会员(ID)</th>
  23. <th>直播ID</th>
  24. <th>流名</th>
  25. <th>直播收益</th>
  26. <th>直播开始时间</th>
  27. <th>直播结束时间</th>
  28. <th>直播类型</th>
  29. <th>总人数</th>
  30. <!-- <th>{:lang('ACTIONS')}</th> -->
  31. </tr>
  32. </thead>
  33. <tbody>
  34. <php>$islive=array("0"=>"直播结束","1"=>"直播中");</php>
  35. <foreach name="lists" item="vo">
  36. <tr>
  37. <td>{$vo.id}</td>
  38. <td>{$vo['userinfo']['user_nicename']} ({$vo['uid']}) </td>
  39. <td>{$vo['showid']}</td>
  40. <td>{$vo['stream']}</td>
  41. <td>{$vo['votes']}</td>
  42. <td>{:date('Y-m-d H:i',$vo['starttime'])}</td>
  43. <td>{:date('Y-m-d H:i',$vo['endtime'])}</td>
  44. <td><if condition="$vo['live_type'] eq '0'">视频直播<else />语音聊天室</if></td>
  45. <td>{$vo['nums']}</td>
  46. <!-- <td align="center">
  47. <a class="btn btn-xs btn-danger js-ajax-delete" href="{:url('liverecord/del',array('id'=>$vo['id']))}">{:lang('DELETE')}</a>
  48. </td> -->
  49. </tr>
  50. </foreach>
  51. </tbody>
  52. </table>
  53. <div class="pagination">{$page}</div>
  54. </form>
  55. </div>
  56. <script src="__STATIC__/js/admin.js"></script>
  57. </body>
  58. </html>