130 lines
3.7 KiB
PHTML
130 lines
3.7 KiB
PHTML
<?php
|
|
$this->headTitle($this->config->title->site);
|
|
$this->headTitle('后台管理');
|
|
$this->headTitle()->setSeparator(' - ');
|
|
$this->headScript()->appendFile('/js/jquery-1.7.min.js');
|
|
$this->headLink()->appendStylesheet('/css/admin.css');
|
|
$this->headScript()->appendFile('/js/jquery.colorbox-min.js');
|
|
$this->headLink()->appendStylesheet('/css/author.css');
|
|
$this->headLink()->appendStylesheet('/css/colorbox.css');
|
|
$this->breadcrumb('<a href="/">首页</a>');
|
|
$this->breadcrumb('<a href="/admin">后台首页</a>');
|
|
$this->breadcrumb('<a href="/admin/news">新闻中心</a>');
|
|
$this->breadcrumb('新闻列表');
|
|
?>
|
|
<style>
|
|
.listingDetails{position:absolute;width:650px;}
|
|
.pad{position:absolute;background:#FFF;border:2px solid #444;border-radius:5px;padding:5px;display:none;z-index:9999;}
|
|
</style>
|
|
<script>
|
|
$('#divFooter').css('position','absolute');
|
|
</script>
|
|
<div id="leftPanel">
|
|
<?= $this->partial('news/left.phtml'); ?>
|
|
</div>
|
|
<div id="rightPanel">
|
|
<?php if ($this->msg or $this->messages) :?>
|
|
<div id="message">
|
|
<?php if ($this->msg) : ?>
|
|
<p><?php echo $this->msg; ?></p>
|
|
<?php endif; if ($this->messages): foreach($this->messages as $msg): ?>
|
|
<p><?php echo $msg; ?></p>
|
|
<?php endforeach;endif; ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
<div>
|
|
<select>
|
|
<option>按栏目查看</option>
|
|
<?php
|
|
if(count($this->types))
|
|
{
|
|
foreach($this->types as $v)
|
|
{
|
|
if(!empty($v[$this->deepField])) {$haed = str_repeat('-',$v[$this->deepField]);}
|
|
if($this->type == $v['id'])
|
|
echo '<option onclick="self.location=\'/admin/news/newslist/type/'.$v['id'].'\'" selected="selected">'
|
|
.$haed
|
|
.$v['title'].'</option>';
|
|
else
|
|
echo '<option onclick="self.location=\'/admin/news/newslist/type/'.$v['id'].'\'">'.$haed.$v['title'].'</option>';
|
|
}
|
|
}
|
|
?>
|
|
</select>
|
|
|
|
<a href="/admin/news/newslist">所有新闻列表</a>
|
|
</div>
|
|
<table id="report" class="stylized full" style="width:650px;">
|
|
<thead>
|
|
<tr>
|
|
<th width="50%">新闻标题</th>
|
|
<th width="15%">栏目</th>
|
|
<th width="15%">状态</th>
|
|
<th width="20%">新闻管理</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
if(count($this->paginator))
|
|
{
|
|
$list = "";
|
|
foreach ($this->paginator as $v)
|
|
{
|
|
$list .= '
|
|
<tr>
|
|
<td>
|
|
<a id="titlebtn'.$v['id'].'" class="title"><b>'.$v['title'].'</b></a>
|
|
</td>
|
|
<td>
|
|
<a href="'.$v['type_url'].'"><b>'.$v['type_title'].'</b></a>
|
|
</td>
|
|
<td>';
|
|
if($v['ts_published']<time() and $v['is_pub']>0)
|
|
{
|
|
$list.="已发布";
|
|
}
|
|
if($v['ts_published']>time() and $v['is_pub']>0)
|
|
{
|
|
$list.= date('Y-m-d H:i',$v['ts_published']) . '发布';
|
|
}
|
|
if($v['is_pub']==0)
|
|
{
|
|
$list.="草稿";
|
|
}
|
|
if($v['is_pub']<0)
|
|
{
|
|
$list.="未发布";
|
|
}
|
|
$list .= '</td>
|
|
<td>
|
|
<a href="'.$v['url'].'">浏览</a>
|
|
<a href="/admin/news/newsedit/id/'.$v['id'].'"><b>编辑</b></a>
|
|
<a href="/admin/news/delete/id/'.$v['id'].'" onclick="return confirm(\'是否确定删除该文章\')">删除</a></td>
|
|
</tr>
|
|
';
|
|
}
|
|
echo $list;
|
|
}
|
|
else
|
|
{
|
|
echo '
|
|
<tr><td>暂无数据</td><td></td></tr>
|
|
';
|
|
}
|
|
?>
|
|
|
|
</tbody>
|
|
</table>
|
|
<div class="pagenavi"><?= $this->paginator; ?></div>
|
|
</div>
|
|
<script type="text/javascript">
|
|
$(document).ready(function(){
|
|
$('.title').bind('click', function() {
|
|
$.colorbox({'innerWidth':'50%','html':$(this).next('.listingDetails').children('.pad').html()});
|
|
});
|
|
});
|
|
function showpad(id){
|
|
$('#titlebtn'+id).click();
|
|
}
|
|
|
|
</script>
|