|
|
<?php
|
|
|
use yii\helpers\Html;
|
|
|
use backend\widgets\LinkPager;
|
|
|
|
|
|
$this->title = $this->params['main_title'].'-'.$this->params['sub_title'];
|
|
|
?>
|
|
|
|
|
|
<div class="form-group">
|
|
|
<label>
|
|
|
<a href="/live/roomcreate" class="btn btn-primary">+ 创建房间</a>
|
|
|
</label>
|
|
|
</div>
|
|
|
|
|
|
<div class="row">
|
|
|
<div class="col-md-12">
|
|
|
<div class="table-responsive">
|
|
|
<table class="table mb30">
|
|
|
<thead>
|
|
|
<tr style="white-space:nowrap">
|
|
|
<th><input type="checkbox" onclick="checkall(this)">选择</th>
|
|
|
<th>房间号</th>
|
|
|
<th>APP</th>
|
|
|
<th>直播标题</th>
|
|
|
<th>头图</th>
|
|
|
<th>主播</th>
|
|
|
<th>预告开始时间</th>
|
|
|
<th>房间密钥</th>
|
|
|
<th>是否精选</th>
|
|
|
<th>马甲状态</th>
|
|
|
<th>直播状态</th>
|
|
|
<th>操作</th>
|
|
|
</tr>
|
|
|
</thead>
|
|
|
<tbody>
|
|
|
</tbody>
|
|
|
</table>
|
|
|
</div>
|
|
|
<!-- table-responsive -->
|
|
|
</div>
|
|
|
<!-- col-md-12 -->
|
|
|
</div> |
|
|
\ No newline at end of file |
...
|
...
|
|