sprint day9

1.项目预期任务量:15天
2.已花费时间:14天
3.剩余时间:1天
任务看板:

SCRUM会议照片:

产品状态:
阅卷管理系统
界面演示:在这里可以显示试卷和阅卷情况,老师阅完卷就不会再次阅卷
可以查看学生阅卷情况
代码:`

<head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>阅卷管理</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> <style> :root { --primary-color: #3498db; --secondary-color: #2980b9; --accent-color: #e74c3c; --light-bg: #f8f9fa; --dark-text: #2c3e50; }

body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
color: var(--dark-text);
background-color: #f5f7fa;
}

.header {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
padding: 1rem 0;
margin-bottom: 2rem;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card {
border-radius: 10px;
box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
margin-bottom: 2rem;
border: none;
}

.card-header {
background-color: white;
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
font-weight: 600;
padding: 1.25rem 1.5rem;
border-radius: 10px 10px 0 0 !important;
}

.table-responsive {
border-radius: 10px;
overflow: hidden;
}

.table {
margin-bottom: 0;
}

.table th {
background-color: #f8fafc;
font-weight: 600;
padding: 1rem 1.5rem;
border-bottom-width: 1px;
}

.table td {
padding: 1rem 1.5rem;
vertical-align: middle;
}

.btn-primary {
background-color: var(--primary-color);
border-color: var(--primary-color);
}

.btn-primary:hover {
background-color: var(--secondary-color);
border-color: var(--secondary-color);
}

.btn-danger {
background-color: var(--accent-color);
border-color: var(--accent-color);
}

.btn-sm {
padding: 0.35rem 0.75rem;
font-size: 0.875rem;
}

.badge {
font-weight: 500;
padding: 0.35em 0.65em;
}

.search-box {
max-width: 300px;
margin-bottom: 1.5rem;
}

.status-badge {
display: inline-block;
padding: 0.35em 0.65em;
border-radius: 50px;
font-size: 0.875em;
font-weight: 600;
}

.status-waiting {
background-color: #fff3cd;
color: #856404;
}

.status-completed {
background-color: #d4edda;
color: #155724;
}

.status-reviewing {
background-color: #cce5ff;
color: #004085;
}

.user-info-card {
background-color: white;
border-radius: 10px;
padding: 1rem;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
margin-bottom: 1.5rem;
}

.action-buttons .btn {
margin-right: 0.5rem;
margin-bottom: 0.5rem;
}

.exam-time {
font-size: 0.875rem;
color: #6c757d;
}

.student-name {
font-weight: 600;
}

.paper-name {
font-weight: 500;
color: var(--primary-color);
}

</head> <body> <div class="header"> <div class="container"> <div class="d-flex justify-content-between align-items-center"> <h1 class="mb-0"><i class="fas fa-clipboard-check me-2"></i>阅卷管理系统</h1> <div class="user-info-card d-flex align-items-center"> <div class="me-3"> <div class="fw-bold" id="userName"></div> <div class="small text-muted" id="userRole"></div> </div> <button class="btn btn-outline-light btn-sm" onclick="logout()"> <i class="fas fa-sign-out-alt me-1"></i>退出 </button> </div> </div> </div> </div>



待阅试卷列表







考试记录
0 条记录

















试卷名称 学生 考试时间 状态 操作







`
posted @ 2025-04-26 19:17  她会回来对不队  阅读(22)  评论(0)    收藏  举报