114 lines
3.9 KiB
PHP
114 lines
3.9 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';
|
|
?>
|
|
|
|
<div class="nav">
|
|
<a href="/admin/dashboard.php" class="nav-item active">首页</a>
|
|
<a href="/admin/students.php" class="nav-item">学生管理</a>
|
|
<?php if ($role === '班主任' || $role === '班长'): ?>
|
|
<a href="/admin/conduct.php" class="nav-item">操行分管理</a>
|
|
<?php endif; ?>
|
|
<?php if ($role === '班主任' || $role === '科代表'): ?>
|
|
<a href="/admin/homework.php" class="nav-item">作业管理</a>
|
|
<?php endif; ?>
|
|
<?php if ($role === '班主任' || $role === '考勤委员'): ?>
|
|
<a href="/admin/attendance.php" class="nav-item">考勤管理</a>
|
|
<?php endif; ?>
|
|
<?php if ($role === '班主任'): ?>
|
|
<a href="/admin/subjects.php" class="nav-item">科目管理</a>
|
|
<a href="/admin/admins.php" class="nav-item">管理员管理</a>
|
|
<?php endif; ?>
|
|
<a href="/admin/history.php" class="nav-item">历史记录</a>
|
|
<a href="/admin/password.php" class="nav-item">修改密码</a>
|
|
</div>
|
|
|
|
<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">操行分排行榜 (Top 10)</div>
|
|
<div class="table-wrapper">
|
|
<table class="table">
|
|
<thead>
|
|
<tr><th>排名</th><th>学号</th><th>姓名</th><th>操行分</th></tr>
|
|
</thead>
|
|
<tbody id="rankingList"></tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script>
|
|
async function loadDashboard() {
|
|
// 加载学生统计
|
|
const studentsRes = await apiGet('/api/admin/students');
|
|
if (studentsRes && studentsRes.success) {
|
|
document.getElementById('dashboardStats').innerHTML = `
|
|
<div class="stat-card">
|
|
<div class="stat-label">班级学生数</div>
|
|
<div class="stat-value">${studentsRes.data.total || 0}</div>
|
|
</div>
|
|
`;
|
|
}
|
|
|
|
// 快捷操作按钮
|
|
let quickActions = '';
|
|
if ('<?php echo $role; ?>' === '班主任' || '<?php echo $role; ?>' === '班长') {
|
|
quickActions += '<button class="btn btn-primary" onclick="location.href=\'/admin/conduct.php\'">操行分管理</button>';
|
|
}
|
|
if ('<?php echo $role; ?>' === '班主任') {
|
|
quickActions += '<button class="btn btn-success" onclick="location.href=\'/admin/students.php\'">导入学生</button>';
|
|
}
|
|
document.getElementById('quickActions').innerHTML = quickActions || '<p>暂无快捷操作</p>';
|
|
|
|
// 加载排行榜
|
|
const rankingRes = await apiGet('/api/student/ranking', { limit: 10 });
|
|
if (rankingRes && rankingRes.success) {
|
|
let html = '';
|
|
rankingRes.data.ranking.forEach((student, index) => {
|
|
html += `
|
|
<tr>
|
|
<td>${index + 1}</td>
|
|
<td>${escapeHtml(student.student_no)}</td>
|
|
<td>${escapeHtml(student.name)}</td>
|
|
<td>${student.total_points}</td>
|
|
</tr>
|
|
`;
|
|
});
|
|
if (rankingRes.data.ranking.length === 0) {
|
|
html = '<tr><td colspan="4" style="text-align:center;">暂无数据</td></tr>';
|
|
}
|
|
document.getElementById('rankingList').innerHTML = html;
|
|
}
|
|
}
|
|
|
|
loadDashboard();
|
|
</script>
|
|
<script src="/assets/js/admin.js"></script>
|
|
|
|
<?php include __DIR__ . '/../includes/footer.php'; ?>
|