index.html 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. <li><a href="{:url('Liveing/add')}">{:lang('ADD')}</a></li>
  8. </ul>
  9. <form class="well form-inline margin-top-20" method="post" action="{:url('Liveing/index')}">
  10. 时间:
  11. <input class="form-control js-bootstrap-date" name="start_time" id="start_time" 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" 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="submit" class="btn btn-primary" value="搜索">
  17. </form>
  18. <form method="post" class="js-ajax-form" >
  19. <table class="table table-hover table-bordered">
  20. <thead>
  21. <tr>
  22. <th>会员ID</th>
  23. <th>会员昵称</th>
  24. <th>直播ID</th>
  25. <th>直播开始时间</th>
  26. <th>直播分类</th>
  27. <th>房间类型</th>
  28. <th>密码/价格</th>
  29. <th>视频类型</th>
  30. <th>在线人数</th>
  31. <th>本场收益</th>
  32. <th>打赏人数</th>
  33. <th>人均打赏</th>
  34. <th>播流地址</th>
  35. <th>推流地址</th>
  36. <th>设备信息</th>
  37. <th>操作</th>
  38. </tr>
  39. </thead>
  40. <tbody>
  41. <foreach name="lists" item="vo">
  42. <tr>
  43. <td>{$vo.uid}</td>
  44. <td>{$vo['userinfo']['user_nicename']} </td>
  45. <td>{$vo['showid']}</td>
  46. <td>{:date('Y-m-d H:i',$vo['starttime'])}</td>
  47. <td>{$liveclass[$vo['liveclassid']]}</td>
  48. <td>{$type[$vo['type']]}</td>
  49. <td>{$vo['type_val']}</td>
  50. <td><if condition="$vo['anyway'] eq 0">竖屏<else/>横屏</if></td>
  51. <td>{$vo['nums']}</td>
  52. <td>{$vo['totalcoin']}</td>
  53. <td>{$vo['total_nums']}</td>
  54. <td>{$vo['total_average']}</td>
  55. <td>{$vo['pull']}</td>
  56. <td>{$vo['push']}</td>
  57. <td>{$vo['deviceinfo']}</td>
  58. <td>
  59. <if condition="$vo['isvideo']==1">
  60. <a class="btn btn-xs btn-primary" href='{:url("Liveing/edit",array("uid"=>$vo["uid"]))}'>{:lang('EDIT')}</a>
  61. <a class="btn btn-xs btn-danger js-ajax-delete" href="{:url('Liveing/del',array('uid'=>$vo['uid']))}">{:lang('DELETE')}</a>
  62. </if>
  63. </td>
  64. </tr>
  65. </foreach>
  66. </tbody>
  67. </table>
  68. <div class="pagination">{$page}</div>
  69. </form>
  70. </div>
  71. <script src="__STATIC__/js/admin.js"></script>
  72. </body>
  73. </html>