Commit f4bc79a9 by 冷斌

踢人

parent c63a6fd2
...@@ -30,9 +30,9 @@ ...@@ -30,9 +30,9 @@
<div class="control-group"> <div class="control-group">
<label class="control-label">审核状态</label> <label class="control-label">审核状态</label>
<div class="controls"> <div class="controls">
<label class="radio inline" for="status_2"><input type="radio" name="status" value="2" id="status_2" <if condition="$auth['status'] eq '2'">checked</if>>失败</label> <label class="radio inline" for="status_2"><input type="radio" name="status" value="2" id="status_2" <if condition="$image['status'] eq '2'">checked</if>>失败</label>
<label class="radio inline" for="status_0"><input type="radio" name="status" value="0" id="status_0" <if condition="$auth['status'] eq '0'">checked</if>>处理中</label> <label class="radio inline" for="status_0"><input type="radio" name="status" value="0" id="status_0" <if condition="$image['status'] eq '0'">checked</if>>处理中</label>
<label class="radio inline" for="status_1"><input type="radio" name="status" value="1" id="status_1" <if condition="$auth['status'] eq '1'">checked</if>>成功</label> <label class="radio inline" for="status_1"><input type="radio" name="status" value="1" id="status_1" <if condition="$image['status'] eq '1'">checked</if>>成功</label>
</div> </div>
</div> </div>
......
...@@ -27,11 +27,12 @@ ...@@ -27,11 +27,12 @@
<th>房间类型</th> <th>房间类型</th>
<th>封面图</th> <th>封面图</th>
<th>视频类型</th> <th>视频类型</th>
<th>状态</th>
<th>操作</th> <th>操作</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<php>$islive=array("0"=>"直播结束","1"=>"直播中");</php> <php>$islive=array("0"=>"直播结束","1"=>"直播中");$type=array("0"=>"普通房间","1"=>"密码房间","2"=>"门票房间","3"=>"计时房间");$status=['待处理', '成功', '失败']</php>
<foreach name="lists" item="vo"> <foreach name="lists" item="vo">
<tr> <tr>
<td align="center">{$vo.uid}</td> <td align="center">{$vo.uid}</td>
...@@ -42,8 +43,9 @@ ...@@ -42,8 +43,9 @@
<td>{$liveclass[$vo['live']['liveclassid']]}</td> <td>{$liveclass[$vo['live']['liveclassid']]}</td>
<td><a href="{$vo['thumb']}" target="_blank"><img width="25" height="25" src="{$vo['thumb']}" /></a></td> <td><a href="{$vo['thumb']}" target="_blank"><img width="25" height="25" src="{$vo['thumb']}" /></a></td>
<td><if condition="$vo['live']['anyway'] eq 0">竖屏<else/>横屏</if></td> <td><if condition="$vo['live']['anyway'] eq 0">竖屏<else/>横屏</if></td>
<td>{$status[$vo['status]]}</td>
<td> <td>
<a href="{:U('Liveing/editImage',array('uid'=>$vo['uid']))}">审核</a> <a href="{:U('Liveing/editImage',array('uid'=>$vo['uid']))}" >审核</a>
</td> </td>
</tr> </tr>
</foreach> </foreach>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment