49 lines
1.5 KiB
PHTML
49 lines
1.5 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->breadcrumb('<a href="/">首页</a>');
|
|
$this->breadcrumb('<a href="/admin">后台首页</a>');
|
|
$this->breadcrumb('<a href="/admin/news">新闻中心</a>');
|
|
?>
|
|
<style>
|
|
.listingDetails{position:absolute;width:650px; z-index:999;}
|
|
.pad{position:absolute;background:#FFF;border:2px solid #444;border-radius:5px;padding:5px;display:none;}
|
|
</style>
|
|
<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; ?>
|
|
|
|
<h3>统计</h3>
|
|
<hr/>
|
|
<ul>
|
|
<li>共 <?php echo $this->totle['c'];?> 条档案</li>
|
|
<li>栏目 <?php echo $this->typec['c'];?> 个</li>
|
|
</ul>
|
|
</div>
|
|
<script type="text/javascript">
|
|
$(document).ready(function(){
|
|
$('.title').bind('click', function() {
|
|
$('.pad').css('display','none');
|
|
$(this).next('.listingDetails').children('.pad').show();
|
|
});
|
|
$('.closepad').bind('click', function() {
|
|
$('.pad').css('display','none');
|
|
});
|
|
});
|
|
function showpad(id){
|
|
$('#titlebtn'+id).click();
|
|
}
|
|
</script>
|