58 lines
2.1 KiB
PHP
58 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* 班级操行分管理系统 - 管理端首页
|
|
*
|
|
* 开发者: Canglan
|
|
* 联系方式: admin@sea-studio.top
|
|
* 版权归属: Sea Network Technology Studio
|
|
* 许可证: MIT License
|
|
*
|
|
* 版权所有 © Sea Network Technology Studio
|
|
*/
|
|
|
|
require_once __DIR__ . '/../config.php';
|
|
|
|
if (!isset($_SESSION['user_id']) || $_SESSION['user_type'] !== 'admin') {
|
|
header('Location: /index.php');
|
|
exit();
|
|
}
|
|
|
|
$page_title = '首页';
|
|
$role = $_SESSION['role'] ?? '';
|
|
include __DIR__ . '/../includes/header.php';
|
|
?>
|
|
|
|
<?php include __DIR__ . '/../includes/nav.php'; ?>
|
|
|
|
<div class="container">
|
|
<div class="stats-grid" id="dashboardStats"></div>
|
|
|
|
<div class="card">
|
|
<div class="card-title">快捷操作</div>
|
|
<div class="action-buttons" id="quickActions"></div>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<div class="card-title">操行分排行榜</div>
|
|
<div class="table-wrapper">
|
|
<div style="display: flex; align-items: center; margin-bottom: 12px; gap: 8px;">
|
|
<span style="font-size: 14px; color: #666;">显示前</span>
|
|
<input type="number" id="percentileFilter" style="width: 70px; padding: 4px 8px; border: 1px solid #ddd; border-radius: 4px;" min="1" max="100" value="100" placeholder="1-100">
|
|
<span style="font-size: 14px; color: #666;">% 的学生</span>
|
|
<button class="btn btn-sm" style="background: #667eea; color: white;" onclick="applyPercentileFilter()">筛选</button>
|
|
<button class="btn btn-sm" style="border: 1px solid #ccc; color: #666;" onclick="resetPercentileFilter()">显示全部</button>
|
|
</div>
|
|
<table class="table">
|
|
<thead>
|
|
<tr><th>排名</th><th>学号</th><th>姓名</th><th>操行分</th></tr>
|
|
</thead>
|
|
<tbody id="rankingList"></tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>window.PAGE_CONFIG = { role: '<?php echo $role; ?>' };</script>
|
|
<script src="/assets/js/dashboard.js"></script>
|
|
|
|
<?php include __DIR__ . '/../includes/footer.php'; ?>
|