imgurl/admin/index.php

54 lines
1.6 KiB
PHP
Raw Normal View History

2018-04-30 12:11:55 +00:00
<?php
$title = "后台管理 - ImgURL";
include_once("../functions/class/class.admin.php");
// 载入头部
include_once("../tpl/admin/header.php");
//获取统计数据
$data = $pic->data();
?>
<div class="layui-container" style = "margin-top:2em;">
<div class="layui-row">
<div class="layui-col-lg3">
<!-- 载入左侧导航栏 -->
<?php include_once("../tpl/admin/left.php"); ?>
</div>
<!-- 后台内容部分 -->
<div class="layui-col-lg9">
<div>
2018-08-31 12:05:51 +00:00
<h2>数据统计</h2>
2018-04-30 12:11:55 +00:00
<table class="layui-table">
<colgroup>
2018-08-31 12:05:51 +00:00
<col width="25%">
<col width="25%">
<col width="25%">
2018-04-30 12:11:55 +00:00
<col>
</colgroup>
<thead>
<tr>
2018-08-31 12:05:51 +00:00
<th>累积上传</th>
2018-04-30 12:11:55 +00:00
<th>本月上传数量</th>
<th>今日上传</th>
<th>可疑图片</th>
</tr>
</thead>
<tbody>
<tr>
2018-08-31 12:05:51 +00:00
<td><?php echo $data['all']; ?></td>
2018-04-30 12:11:55 +00:00
<td><?php echo $data['month']; ?></td>
<td><?php echo $data['day']; ?></td>
<td><?php echo $data['level']; ?></td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- 后台内容部分END -->
</div>
</div>
<?php
// 载入页脚
// 载入头部
include_once("../tpl/admin/footer.php");
?>