56 lines
1.3 KiB
PHTML
56 lines
1.3 KiB
PHTML
<?php
|
|
$this->headTitle($this->config->title->site);
|
|
$this->headTitle('后台管理');
|
|
$this->headTitle()->setSeparator(' - ');
|
|
$this->headLink()->appendStylesheet('/css/admin.css');
|
|
$this->headLink()->appendStylesheet('/css/jquery.jqplot.css');
|
|
$this->headScript()->appendFile('/js/jquery-1.7.min.js');
|
|
$this->breadcrumb('<a href="/">首页</a>');
|
|
$this->breadcrumb('<a href="/admin">后台首页</a>');
|
|
$this->breadcrumb()->setSeparator(' > ');
|
|
?>
|
|
<style>
|
|
.charts{margin:30px 0px;}
|
|
.charts .title{color:#003366;}
|
|
.cp {line-height:24px;}
|
|
.cp a{color:#4bb2c5;line-height:24px;}
|
|
.cp a:hover{color:#FFF;background:#4bb2c5;}
|
|
</style>
|
|
<div id="leftPanel">
|
|
<?= $this->partial('stat/left.phtml'); ?>
|
|
</div>
|
|
<div id="rightPanel">
|
|
|
|
<div class="cp">
|
|
</div>
|
|
<div id="unitdata">
|
|
</div>
|
|
|
|
<table style="float:left;">
|
|
<tr><td>单位名称</td><td>离线下载</td></tr>
|
|
<?php
|
|
foreach ($this->unitoffline as $k=>$v)
|
|
|
|
{
|
|
|
|
echo "<tr><td>{$v['unit']}</td><td>{$v['num']}</td></tr>";
|
|
|
|
}
|
|
|
|
?>
|
|
</table>
|
|
<table style="float:left;margin-left:20px;">
|
|
<tr><td>单位名称</td><td>在线下载</td></tr>
|
|
<?php
|
|
foreach ($this->unitonline as $k=>$v)
|
|
|
|
{
|
|
|
|
echo "<tr><td>{$v['unit']}</td><td>{$v['num']}</td></tr>";
|
|
|
|
}
|
|
|
|
?>
|
|
</table>
|
|
|
|
</div>
|