📄 caiji_index.tpl.php
字号:
<html>
<head>
<title>系统后台</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<link type="text/css" rel="stylesheet" href="../../images/admin/public.css" />
<link type="text/css" rel="stylesheet" href="../../images/admin/style.css" />
<link href="<?php echo $this->basedir;?>js/datepicker.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/ui.datepicker.js"></script>
<script>
<!--
$(document).ready(function(){
$('#stime').datepicker();
$('#etime').datepicker();
}
)
//-->
</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>
<table width="100%" border="0" align="center" cellpadding="5" cellspacing="1" class="tab">
<tr class="sub">
<td width="12%" class="align-center">编号</td>
<td width="20%" class="align-center">名称</td>
<td width="27%" class="align-center">采集地址</td>
<td width="8%" class="align-center">影片数</td>
<td width="11%" class="align-center">播放器</td>
<td width="22%" class="align-center">管理</td>
</tr>
<?php foreach( $this->rows as $row){?>
<tr class="row">
<td class="align-center"><?php echo $row['id'];?></td>
<td class="align-center"><?php echo $row['name'];?></td>
<td class="align-center"><?php echo $row['url'];?></td>
<td class="align-center"><?php echo $row['moviecount'];?></td>
<td class="align-center"><?php echo $row['play'];?></td>
<td class="align-center"><a href="?mod=caiji&action=get&id=<?php echo $row['id'];?>">采集</a> <a href="?mod=caiji&action=add&id=<?php echo $row['id'];?>">编辑</a> <a href="?mod=caiji&action=export&id=<?php echo $row['id'];?>">导出规则</a> <a href="?mod=caiji&action=delete&id=<?php echo $row['id'];?>" onClick="return confirm('删除后将不可恢复,确认删除规则吗?')">删除</a></td>
</tr>
<?php }?>
</table>
<?php echo $this->printpage;?>
</div>
<!-- ########## end ########## -->
</td>
</tr>
</table>
<?php
echo $this->render('copyright');
?>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -