📄 movie_api.tpl.php
字号:
<html>
<head>
<title>系统后台</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<link href="../../images/admin/public.css" rel="stylesheet" type="text/css" />
<link href="../../images/admin/style.css" rel="stylesheet" type="text/css" />
<script src="<?php echo $this->basedir;?>js/jquery.js" language="javascript"></script>
<script src="<?php echo $this->basedir;?>js/jquery.tablednd.js" language="javascript"></script>
<script language="javascript">
$(document).ready(function() {
$("#ta tr").mouseover(function(){
$(this).addClass("over");
});
$("#ta tr").mouseout(function(){
$(this).removeClass("over");
});
$("#ta tr:even").addClass("double");
$('#mostrar').click(function(){$('#sh').toggle();});
/*全选*/
$("#checkall").click(function() {
$("input[@name='movid[]']").each(function() {
$(this).attr("checked", $('#checkall').attr('checked'));
});
});
$("#all").click(function() {
$("input[@name='movid[]']").each(function() {
$(this).attr("checked", $('#all').attr('checked'));
});
});
});
</script>
<body>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tr align="center" valign="top">
<td width="*" align="center" valign="top"><!-- ######### begin ######### -->
<div class="Block">
<div class="BlockBar">有问题影片列表(为了保障速度,只显示一页)</div>
<form id="form2" name="form2" method="post" action="<?php echo $this->installdir;?>movie/post/">
<table cellspacing="1" cellpadding="4" class="tab" id="ta">
<tr class="sub align-center">
<td width="50" class="align-center">编号</td>
<td width="172" class="align-center">片名</td>
<td width="302" class="align-center">错误描述</td>
<td width="63" class="align-center">编辑</td>
<td width="94" class="align-center"><input name="checkbox3" type="checkbox" id="checkall" class="checkbox" value="checkbox" />
全选</td>
</tr>
<?php
if (count($this->movie)>0){
foreach ($this->movie as $rs){
//print_r($rs);
?>
<tr class="row">
<td class="align-center"><a href="<?php echo $this->installdir;?>content/view/movid/<?php echo $rs['movid'];?>/" target="_blank" title="浏览前台页面"><?php echo $rs['movid'];?></a></td>
<td><a href="<?php echo $this->installdir;?>content/view/movid/<?php echo $rs['movid'];?>/" target="_blank" title="浏览前台页面"><?php echo $rs['title'];?></a></td>
<td class="align-left"><?php echo $rs['comments'];?></td>
<td class="align-center"><a href="<?php echo $this->installdir;?>movie/modify/movid/<?php echo $rs['movid'];?>/" title="编辑">编辑</a></td>
<td class="align-center" c><input name="movid[]" type="checkbox" class="checkbox" id="movid[]" value="<?php echo $rs['movid'];?>" />
<a href="<?php echo $this->installdir;?>movie/delete/movid/<?php echo $rs['movid'];?>/" onClick="return confirm('确认删除吗')">删除 </a></td>
</tr>
<?php
}
}else{
echo '<tr class="row align-center"><td colspan="5">没有找到任何有错误的影片记录!</td></tr>';
}?>
</table>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="82%"><?php echo $this->printpage;?>
<div class="form-handle">
<input name="all" id="all" type="checkbox" class="checkbox" value="checkbox" />
全选
<select name="select" id="select">
<option value="delmovie">删除影片</option>
<option value="locked">隐藏影片</option>
<option value="unlock">显示影片</option>
</select>
<input name="do" type="submit" id="do" value="提交">
</div></td>
</tr>
</table>
</form>
</div>
<br />
<div id="App-Version-Prompt" style="display:none;">
<div class="space"></div>
<div class="Block">
<div class="BlockBar">版本更新信息</div>
<div class="BlockContent" id="App-Version-Prompt-Body" style="padding:20px 5px 20px 5px; text-align:center; background:#FFFFCC;">loading...</div>
</div>
</div>
<!-- ########## end ########## -->
</td>
</tr>
</table>
<?php
echo $this->render('copyright');
?>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -