934 lines
34 KiB
HTML
934 lines
34 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="zh-CN">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>学情中心 - 东师理想AI教育云平台</title>
|
||
|
<!-- 引入外部CSS -->
|
||
|
<link rel="stylesheet" href="https://gcore.jsdelivr.net/npm/layui@2.9.12/dist/css/layui.min.css">
|
||
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
||
|
<style>
|
||
|
/* 全局样式 */
|
||
|
* {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
font-family: "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
|
||
|
background-color: #f5f7fa;
|
||
|
color: #333;
|
||
|
line-height: 1.6;
|
||
|
}
|
||
|
|
||
|
.container {
|
||
|
width: 1200px;
|
||
|
margin: 0 auto;
|
||
|
padding: 0 15px;
|
||
|
}
|
||
|
|
||
|
/* 顶部导航栏 */
|
||
|
.navbar {
|
||
|
background-color: #fff;
|
||
|
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
||
|
position: sticky;
|
||
|
top: 0;
|
||
|
z-index: 1000;
|
||
|
}
|
||
|
|
||
|
.nav-container {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
align-items: center;
|
||
|
padding: 15px 0;
|
||
|
}
|
||
|
|
||
|
.logo {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.logo-placeholder {
|
||
|
font-size: 20px;
|
||
|
font-weight: bold;
|
||
|
color: #1E9FFF;
|
||
|
margin-right: 10px;
|
||
|
}
|
||
|
|
||
|
.nav-menu {
|
||
|
display: flex;
|
||
|
list-style: none;
|
||
|
}
|
||
|
|
||
|
.nav-menu li {
|
||
|
margin-left: 30px;
|
||
|
}
|
||
|
|
||
|
.nav-menu a {
|
||
|
text-decoration: none;
|
||
|
color: #333;
|
||
|
font-weight: 500;
|
||
|
transition: color 0.3s;
|
||
|
font-size: 16px;
|
||
|
}
|
||
|
|
||
|
.nav-menu a:hover {
|
||
|
color: #1E9FFF;
|
||
|
}
|
||
|
|
||
|
.nav-menu a.active {
|
||
|
color: #1E9FFF;
|
||
|
border-bottom: 2px solid #1E9FFF;
|
||
|
padding-bottom: 5px;
|
||
|
}
|
||
|
|
||
|
/* 页面标题区 */
|
||
|
.page-header {
|
||
|
background: linear-gradient(135deg, #1E9FFF, #00BFFF);
|
||
|
color: white;
|
||
|
padding: 40px 0;
|
||
|
margin-bottom: 30px;
|
||
|
}
|
||
|
|
||
|
.page-title {
|
||
|
font-size: 32px;
|
||
|
font-weight: bold;
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
|
||
|
.page-subtitle {
|
||
|
font-size: 18px;
|
||
|
opacity: 0.9;
|
||
|
}
|
||
|
|
||
|
/* 内容区域 */
|
||
|
.content-area {
|
||
|
display: flex;
|
||
|
gap: 30px;
|
||
|
margin-bottom: 40px;
|
||
|
}
|
||
|
|
||
|
.main-content {
|
||
|
flex: 1;
|
||
|
}
|
||
|
|
||
|
.sidebar {
|
||
|
width: 300px;
|
||
|
}
|
||
|
|
||
|
/* 学情分析卡片 */
|
||
|
.analysis-cards {
|
||
|
display: grid;
|
||
|
grid-template-columns: repeat(2, 1fr);
|
||
|
gap: 20px;
|
||
|
margin-bottom: 30px;
|
||
|
}
|
||
|
|
||
|
.analysis-card {
|
||
|
background-color: #fff;
|
||
|
border-radius: 8px;
|
||
|
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
|
||
|
padding: 20px;
|
||
|
transition: transform 0.3s, box-shadow 0.3s;
|
||
|
}
|
||
|
|
||
|
.analysis-card:hover {
|
||
|
transform: translateY(-5px);
|
||
|
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
|
||
|
}
|
||
|
|
||
|
.card-header {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
align-items: center;
|
||
|
margin-bottom: 15px;
|
||
|
}
|
||
|
|
||
|
.card-title {
|
||
|
font-size: 18px;
|
||
|
font-weight: bold;
|
||
|
color: #333;
|
||
|
}
|
||
|
|
||
|
.card-icon {
|
||
|
font-size: 24px;
|
||
|
color: #1E9FFF;
|
||
|
}
|
||
|
|
||
|
.card-value {
|
||
|
font-size: 36px;
|
||
|
font-weight: bold;
|
||
|
color: #1E9FFF;
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
|
||
|
.card-desc {
|
||
|
font-size: 14px;
|
||
|
color: #666;
|
||
|
}
|
||
|
|
||
|
/* 学习进度图表 */
|
||
|
.progress-chart {
|
||
|
background-color: #fff;
|
||
|
border-radius: 8px;
|
||
|
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
|
||
|
padding: 20px;
|
||
|
margin-bottom: 30px;
|
||
|
}
|
||
|
|
||
|
.chart-header {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
align-items: center;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
.chart-title {
|
||
|
font-size: 20px;
|
||
|
font-weight: bold;
|
||
|
color: #333;
|
||
|
}
|
||
|
|
||
|
.chart-filter {
|
||
|
display: flex;
|
||
|
gap: 10px;
|
||
|
}
|
||
|
|
||
|
.chart-filter button {
|
||
|
padding: 5px 15px;
|
||
|
border: 1px solid #ddd;
|
||
|
background-color: #fff;
|
||
|
border-radius: 4px;
|
||
|
cursor: pointer;
|
||
|
transition: all 0.3s;
|
||
|
}
|
||
|
|
||
|
.chart-filter button.active {
|
||
|
background-color: #1E9FFF;
|
||
|
color: #fff;
|
||
|
border-color: #1E9FFF;
|
||
|
}
|
||
|
|
||
|
.chart-container {
|
||
|
height: 300px;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
/* 学生列表 */
|
||
|
.student-list {
|
||
|
background-color: #fff;
|
||
|
border-radius: 8px;
|
||
|
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
|
||
|
padding: 20px;
|
||
|
}
|
||
|
|
||
|
.list-header {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
align-items: center;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
.list-title {
|
||
|
font-size: 20px;
|
||
|
font-weight: bold;
|
||
|
color: #333;
|
||
|
}
|
||
|
|
||
|
.search-box {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.search-input {
|
||
|
padding: 8px 15px;
|
||
|
border: 1px solid #ddd;
|
||
|
border-radius: 4px 0 0 4px;
|
||
|
outline: none;
|
||
|
width: 200px;
|
||
|
}
|
||
|
|
||
|
.search-btn {
|
||
|
padding: 8px 15px;
|
||
|
background-color: #1E9FFF;
|
||
|
color: white;
|
||
|
border: none;
|
||
|
border-radius: 0 4px 4px 0;
|
||
|
cursor: pointer;
|
||
|
}
|
||
|
|
||
|
.student-table {
|
||
|
width: 100%;
|
||
|
border-collapse: collapse;
|
||
|
}
|
||
|
|
||
|
.student-table th,
|
||
|
.student-table td {
|
||
|
padding: 12px 15px;
|
||
|
text-align: left;
|
||
|
border-bottom: 1px solid #eee;
|
||
|
}
|
||
|
|
||
|
.student-table th {
|
||
|
background-color: #f8f8f8;
|
||
|
font-weight: bold;
|
||
|
color: #666;
|
||
|
}
|
||
|
|
||
|
.student-table tr:hover {
|
||
|
background-color: #f9f9f9;
|
||
|
}
|
||
|
|
||
|
.student-avatar {
|
||
|
width: 40px;
|
||
|
height: 40px;
|
||
|
border-radius: 50%;
|
||
|
background-color: #1E9FFF;
|
||
|
color: white;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
justify-content: center;
|
||
|
font-weight: bold;
|
||
|
margin-right: 10px;
|
||
|
}
|
||
|
|
||
|
.student-info {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.student-name {
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
.progress-bar {
|
||
|
width: 100px;
|
||
|
height: 8px;
|
||
|
background-color: #eee;
|
||
|
border-radius: 4px;
|
||
|
overflow: hidden;
|
||
|
}
|
||
|
|
||
|
.progress-fill {
|
||
|
height: 100%;
|
||
|
background-color: #1E9FFF;
|
||
|
}
|
||
|
|
||
|
.status-badge {
|
||
|
padding: 4px 8px;
|
||
|
border-radius: 4px;
|
||
|
font-size: 12px;
|
||
|
font-weight: bold;
|
||
|
}
|
||
|
|
||
|
.status-excellent {
|
||
|
background-color: #e6f7ff;
|
||
|
color: #1890ff;
|
||
|
}
|
||
|
|
||
|
.status-good {
|
||
|
background-color: #f6ffed;
|
||
|
color: #52c41a;
|
||
|
}
|
||
|
|
||
|
.status-average {
|
||
|
background-color: #fff7e6;
|
||
|
color: #fa8c16;
|
||
|
}
|
||
|
|
||
|
.status-poor {
|
||
|
background-color: #fff1f0;
|
||
|
color: #f5222d;
|
||
|
}
|
||
|
|
||
|
/* 侧边栏 */
|
||
|
.sidebar-card {
|
||
|
background-color: #fff;
|
||
|
border-radius: 8px;
|
||
|
box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
|
||
|
padding: 20px;
|
||
|
margin-bottom: 20px;
|
||
|
}
|
||
|
|
||
|
.sidebar-title {
|
||
|
font-size: 18px;
|
||
|
font-weight: bold;
|
||
|
color: #333;
|
||
|
margin-bottom: 15px;
|
||
|
padding-bottom: 10px;
|
||
|
border-bottom: 1px solid #eee;
|
||
|
}
|
||
|
|
||
|
.class-filter {
|
||
|
margin-bottom: 15px;
|
||
|
}
|
||
|
|
||
|
.filter-label {
|
||
|
display: block;
|
||
|
margin-bottom: 8px;
|
||
|
font-weight: 500;
|
||
|
color: #666;
|
||
|
}
|
||
|
|
||
|
.filter-select {
|
||
|
width: 100%;
|
||
|
padding: 8px;
|
||
|
border: 1px solid #ddd;
|
||
|
border-radius: 4px;
|
||
|
outline: none;
|
||
|
}
|
||
|
|
||
|
.filter-tags {
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
gap: 8px;
|
||
|
margin-top: 10px;
|
||
|
}
|
||
|
|
||
|
.filter-tag {
|
||
|
padding: 5px 10px;
|
||
|
background-color: #f0f0f0;
|
||
|
border-radius: 4px;
|
||
|
font-size: 14px;
|
||
|
cursor: pointer;
|
||
|
transition: all 0.3s;
|
||
|
}
|
||
|
|
||
|
.filter-tag.active {
|
||
|
background-color: #1E9FFF;
|
||
|
color: white;
|
||
|
}
|
||
|
|
||
|
.hot-topics {
|
||
|
margin-top: 15px;
|
||
|
}
|
||
|
|
||
|
.topic-item {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
align-items: center;
|
||
|
padding: 10px 0;
|
||
|
border-bottom: 1px solid #eee;
|
||
|
}
|
||
|
|
||
|
.topic-item:last-child {
|
||
|
border-bottom: none;
|
||
|
}
|
||
|
|
||
|
.topic-title {
|
||
|
font-size: 14px;
|
||
|
color: #333;
|
||
|
}
|
||
|
|
||
|
.topic-count {
|
||
|
font-size: 12px;
|
||
|
color: #999;
|
||
|
background-color: #f0f0f0;
|
||
|
padding: 2px 6px;
|
||
|
border-radius: 10px;
|
||
|
}
|
||
|
|
||
|
/* 分页 */
|
||
|
.pagination {
|
||
|
margin-top: 20px;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
/* 页脚 */
|
||
|
.footer {
|
||
|
background-color: #2c3e50;
|
||
|
color: #ecf0f1;
|
||
|
padding: 40px 0 20px;
|
||
|
}
|
||
|
|
||
|
.footer-content {
|
||
|
display: flex;
|
||
|
justify-content: space-between;
|
||
|
margin-bottom: 30px;
|
||
|
}
|
||
|
|
||
|
.footer-logo {
|
||
|
width: 30%;
|
||
|
}
|
||
|
|
||
|
.logo-placeholder {
|
||
|
font-size: 20px;
|
||
|
font-weight: bold;
|
||
|
color: #1E9FFF;
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
|
||
|
.footer-links {
|
||
|
display: flex;
|
||
|
width: 60%;
|
||
|
justify-content: space-between;
|
||
|
}
|
||
|
|
||
|
.link-group {
|
||
|
width: 30%;
|
||
|
}
|
||
|
|
||
|
.link-group h3 {
|
||
|
font-size: 18px;
|
||
|
margin-bottom: 15px;
|
||
|
color: #1E9FFF;
|
||
|
}
|
||
|
|
||
|
.link-group ul {
|
||
|
list-style: none;
|
||
|
}
|
||
|
|
||
|
.link-group li {
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
|
||
|
.link-group a {
|
||
|
color: #ecf0f1;
|
||
|
text-decoration: none;
|
||
|
transition: color 0.3s;
|
||
|
}
|
||
|
|
||
|
.link-group a:hover {
|
||
|
color: #1E9FFF;
|
||
|
}
|
||
|
|
||
|
.contact-info {
|
||
|
width: 30%;
|
||
|
}
|
||
|
|
||
|
.contact-info p {
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
|
||
|
.social-links {
|
||
|
display: flex;
|
||
|
gap: 15px;
|
||
|
margin-top: 15px;
|
||
|
}
|
||
|
|
||
|
.social-links a {
|
||
|
color: #ecf0f1;
|
||
|
font-size: 20px;
|
||
|
transition: color 0.3s;
|
||
|
}
|
||
|
|
||
|
.social-links a:hover {
|
||
|
color: #1E9FFF;
|
||
|
}
|
||
|
|
||
|
.copyright {
|
||
|
text-align: center;
|
||
|
padding-top: 20px;
|
||
|
border-top: 1px solid #34495e;
|
||
|
font-size: 14px;
|
||
|
color: #bdc3c7;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<!-- 顶部导航栏 -->
|
||
|
<nav class="navbar">
|
||
|
<div class="container">
|
||
|
<div class="nav-container">
|
||
|
<div class="logo">
|
||
|
<div class="logo-placeholder">东师理想AI教育云平台</div>
|
||
|
</div>
|
||
|
<ul class="nav-menu">
|
||
|
<li><a href="index.html">首页</a></li>
|
||
|
<li><a href="ai-resource-workshop.html">AI资源工坊</a></li>
|
||
|
<li><a href="ai-resource-library.html">AI资源库</a></li>
|
||
|
<li><a href="cloud-classroom.html">名师云课</a></li>
|
||
|
<li><a href="student-learning-center.html" class="active">学情中心</a></li>
|
||
|
<li><a href="#">帮助中心</a></li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|
||
|
</nav>
|
||
|
|
||
|
<!-- 页面标题区 -->
|
||
|
<header class="page-header">
|
||
|
<div class="container">
|
||
|
<h1 class="page-title">学情中心</h1>
|
||
|
<p class="page-subtitle">实时掌握学生学习情况,精准分析学习数据,助力教学质量提升</p>
|
||
|
</div>
|
||
|
</header>
|
||
|
|
||
|
<!-- 内容区域 -->
|
||
|
<section class="main-section">
|
||
|
<div class="container">
|
||
|
<div class="content-area">
|
||
|
<!-- 主内容区 -->
|
||
|
<div class="main-content">
|
||
|
<!-- 学情分析卡片 -->
|
||
|
<div class="analysis-cards">
|
||
|
<div class="analysis-card">
|
||
|
<div class="card-header">
|
||
|
<h3 class="card-title">学生总数</h3>
|
||
|
<div class="card-icon"><i class="fas fa-users"></i></div>
|
||
|
</div>
|
||
|
<div class="card-value">1,256</div>
|
||
|
<div class="card-desc">较上月增长 <span style="color: #52c41a;">+3.2%</span></div>
|
||
|
</div>
|
||
|
<div class="analysis-card">
|
||
|
<div class="card-header">
|
||
|
<h3 class="card-title">平均学习时长</h3>
|
||
|
<div class="card-icon"><i class="fas fa-clock"></i></div>
|
||
|
</div>
|
||
|
<div class="card-value">42.5</div>
|
||
|
<div class="card-desc">分钟/天</div>
|
||
|
</div>
|
||
|
<div class="analysis-card">
|
||
|
<div class="card-header">
|
||
|
<h3 class="card-title">作业完成率</h3>
|
||
|
<div class="card-icon"><i class="fas fa-tasks"></i></div>
|
||
|
</div>
|
||
|
<div class="card-value">87.3%</div>
|
||
|
<div class="card-desc">较上周增长 <span style="color: #52c41a;">+2.1%</span></div>
|
||
|
</div>
|
||
|
<div class="analysis-card">
|
||
|
<div class="card-header">
|
||
|
<h3 class="card-title">知识点掌握度</h3>
|
||
|
<div class="card-icon"><i class="fas fa-chart-line"></i></div>
|
||
|
</div>
|
||
|
<div class="card-value">76.8%</div>
|
||
|
<div class="card-desc">整体掌握情况良好</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<!-- 学习进度图表 -->
|
||
|
<div class="progress-chart">
|
||
|
<div class="chart-header">
|
||
|
<h3 class="chart-title">学习进度分析</h3>
|
||
|
<div class="chart-filter">
|
||
|
<button class="active">本周</button>
|
||
|
<button>本月</button>
|
||
|
<button>本学期</button>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="chart-container">
|
||
|
<!-- 图表占位 -->
|
||
|
<div style="width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background-color: #f9f9f9; border-radius: 4px;">
|
||
|
<p style="color: #999;">学习进度图表区域</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<!-- 学生列表 -->
|
||
|
<div class="student-list">
|
||
|
<div class="list-header">
|
||
|
<h3 class="list-title">学生学情详情</h3>
|
||
|
<div class="search-box">
|
||
|
<input type="text" class="search-input" placeholder="搜索学生姓名或学号">
|
||
|
<button class="search-btn"><i class="fas fa-search"></i></button>
|
||
|
</div>
|
||
|
</div>
|
||
|
<table class="student-table">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>学生信息</th>
|
||
|
<th>班级</th>
|
||
|
<th>学习进度</th>
|
||
|
<th>平均成绩</th>
|
||
|
<th>学习状态</th>
|
||
|
<th>操作</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
<tr>
|
||
|
<td>
|
||
|
<div class="student-info">
|
||
|
<div class="student-avatar">张</div>
|
||
|
<div>
|
||
|
<div class="student-name">张小明</div>
|
||
|
<div style="font-size: 12px; color: #999;">学号: 20230101</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</td>
|
||
|
<td>三年级一班</td>
|
||
|
<td>
|
||
|
<div class="progress-bar">
|
||
|
<div class="progress-fill" style="width: 85%;"></div>
|
||
|
</div>
|
||
|
</td>
|
||
|
<td>92.5</td>
|
||
|
<td><span class="status-badge status-excellent">优秀</span></td>
|
||
|
<td>
|
||
|
<button class="layui-btn layui-btn-xs">查看详情</button>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>
|
||
|
<div class="student-info">
|
||
|
<div class="student-avatar">李</div>
|
||
|
<div>
|
||
|
<div class="student-name">李小红</div>
|
||
|
<div style="font-size: 12px; color: #999;">学号: 20230102</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</td>
|
||
|
<td>三年级一班</td>
|
||
|
<td>
|
||
|
<div class="progress-bar">
|
||
|
<div class="progress-fill" style="width: 78%;"></div>
|
||
|
</div>
|
||
|
</td>
|
||
|
<td>88.3</td>
|
||
|
<td><span class="status-badge status-good">良好</span></td>
|
||
|
<td>
|
||
|
<button class="layui-btn layui-btn-xs">查看详情</button>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>
|
||
|
<div class="student-info">
|
||
|
<div class="student-avatar">王</div>
|
||
|
<div>
|
||
|
<div class="student-name">王小刚</div>
|
||
|
<div style="font-size: 12px; color: #999;">学号: 20230103</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</td>
|
||
|
<td>三年级二班</td>
|
||
|
<td>
|
||
|
<div class="progress-bar">
|
||
|
<div class="progress-fill" style="width: 65%;"></div>
|
||
|
</div>
|
||
|
</td>
|
||
|
<td>76.8</td>
|
||
|
<td><span class="status-badge status-average">一般</span></td>
|
||
|
<td>
|
||
|
<button class="layui-btn layui-btn-xs">查看详情</button>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>
|
||
|
<div class="student-info">
|
||
|
<div class="student-avatar">赵</div>
|
||
|
<div>
|
||
|
<div class="student-name">赵小丽</div>
|
||
|
<div style="font-size: 12px; color: #999;">学号: 20230104</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</td>
|
||
|
<td>三年级二班</td>
|
||
|
<td>
|
||
|
<div class="progress-bar">
|
||
|
<div class="progress-fill" style="width: 45%;"></div>
|
||
|
</div>
|
||
|
</td>
|
||
|
<td>62.5</td>
|
||
|
<td><span class="status-badge status-poor">需加强</span></td>
|
||
|
<td>
|
||
|
<button class="layui-btn layui-btn-xs">查看详情</button>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<tr>
|
||
|
<td>
|
||
|
<div class="student-info">
|
||
|
<div class="student-avatar">刘</div>
|
||
|
<div>
|
||
|
<div class="student-name">刘小华</div>
|
||
|
<div style="font-size: 12px; color: #999;">学号: 20230105</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</td>
|
||
|
<td>三年级三班</td>
|
||
|
<td>
|
||
|
<div class="progress-bar">
|
||
|
<div class="progress-fill" style="width: 92%;"></div>
|
||
|
</div>
|
||
|
</td>
|
||
|
<td>95.2</td>
|
||
|
<td><span class="status-badge status-excellent">优秀</span></td>
|
||
|
<td>
|
||
|
<button class="layui-btn layui-btn-xs">查看详情</button>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</tbody>
|
||
|
</table>
|
||
|
<div class="pagination">
|
||
|
<div class="layui-box layui-laypage layui-laypage-default">
|
||
|
<a href="" class="layui-laypage-prev">上一页</a>
|
||
|
<span class="layui-laypage-curr"><em class="layui-laypage-em"></em><i>1</i></span>
|
||
|
<a href="">2</a>
|
||
|
<a href="">3</a>
|
||
|
<a href="">4</a>
|
||
|
<a href="">5</a>
|
||
|
<a href="" class="layui-laypage-next">下一页</a>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<!-- 侧边栏 -->
|
||
|
<div class="sidebar">
|
||
|
<!-- 筛选条件 -->
|
||
|
<div class="sidebar-card">
|
||
|
<h3 class="sidebar-title">筛选条件</h3>
|
||
|
<div class="class-filter">
|
||
|
<label class="filter-label">班级</label>
|
||
|
<select class="filter-select">
|
||
|
<option>全部班级</option>
|
||
|
<option>三年级一班</option>
|
||
|
<option>三年级二班</option>
|
||
|
<option>三年级三班</option>
|
||
|
<option>三年级四班</option>
|
||
|
</select>
|
||
|
</div>
|
||
|
<div class="class-filter">
|
||
|
<label class="filter-label">学习状态</label>
|
||
|
<select class="filter-select">
|
||
|
<option>全部状态</option>
|
||
|
<option>优秀</option>
|
||
|
<option>良好</option>
|
||
|
<option>一般</option>
|
||
|
<option>需加强</option>
|
||
|
</select>
|
||
|
</div>
|
||
|
<div class="class-filter">
|
||
|
<label class="filter-label">学科</label>
|
||
|
<div class="filter-tags">
|
||
|
<div class="filter-tag active">全部</div>
|
||
|
<div class="filter-tag">语文</div>
|
||
|
<div class="filter-tag">数学</div>
|
||
|
<div class="filter-tag">英语</div>
|
||
|
<div class="filter-tag">科学</div>
|
||
|
<div class="filter-tag">美术</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<!-- 热门知识点 -->
|
||
|
<div class="sidebar-card">
|
||
|
<h3 class="sidebar-title">热门知识点</h3>
|
||
|
<div class="hot-topics">
|
||
|
<div class="topic-item">
|
||
|
<div class="topic-title">分数的初步认识</div>
|
||
|
<div class="topic-count">128</div>
|
||
|
</div>
|
||
|
<div class="topic-item">
|
||
|
<div class="topic-title">一元二次方程</div>
|
||
|
<div class="topic-count">96</div>
|
||
|
</div>
|
||
|
<div class="topic-item">
|
||
|
<div class="topic-title">函数的单调性</div>
|
||
|
<div class="topic-count">84</div>
|
||
|
</div>
|
||
|
<div class="topic-item">
|
||
|
<div class="topic-title">牛顿第一定律</div>
|
||
|
<div class="topic-count">72</div>
|
||
|
</div>
|
||
|
<div class="topic-item">
|
||
|
<div class="topic-title">英语口语训练</div>
|
||
|
<div class="topic-count">65</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</section>
|
||
|
|
||
|
<!-- 页脚 -->
|
||
|
<footer class="footer">
|
||
|
<div class="container">
|
||
|
<div class="footer-content">
|
||
|
<div class="footer-logo">
|
||
|
<div class="logo-placeholder">东师理想AI教育云平台</div>
|
||
|
<p>东师理想AI教育云平台 © 2023 版权所有</p>
|
||
|
</div>
|
||
|
<div class="footer-links">
|
||
|
<div class="link-group">
|
||
|
<h3>平台服务</h3>
|
||
|
<ul>
|
||
|
<li><a href="#">关于我们</a></li>
|
||
|
<li><a href="#">联系我们</a></li>
|
||
|
<li><a href="#">帮助中心</a></li>
|
||
|
<li><a href="#">用户协议</a></li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
<div class="link-group">
|
||
|
<h3>资源中心</h3>
|
||
|
<ul>
|
||
|
<li><a href="ai-resource-workshop.html">AI资源工坊</a></li>
|
||
|
<li><a href="ai-resource-library.html">AI资源库</a></li>
|
||
|
<li><a href="cloud-classroom.html">名师云课</a></li>
|
||
|
<li><a href="student-learning-center.html">学情中心</a></li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
<div class="link-group">
|
||
|
<h3>技术支持</h3>
|
||
|
<ul>
|
||
|
<li><a href="#">API文档</a></li>
|
||
|
<li><a href="#">开发者社区</a></li>
|
||
|
<li><a href="#">技术博客</a></li>
|
||
|
<li><a href="#">常见问题</a></li>
|
||
|
</ul>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="contact-info">
|
||
|
<p><i class="fas fa-phone"></i> 400-123-4567</p>
|
||
|
<p><i class="fas fa-envelope"></i> support@dsideal.edu.cn</p>
|
||
|
<div class="social-links">
|
||
|
<a href="#"><i class="fab fa-weixin"></i></a>
|
||
|
<a href="#"><i class="fab fa-weibo"></i></a>
|
||
|
<a href="#"><i class="fab fa-qq"></i></a>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
<div class="copyright">
|
||
|
<p>© 2023 东师理想科技有限公司 版权所有 | 吉ICP备12345678号</p>
|
||
|
</div>
|
||
|
</div>
|
||
|
</footer>
|
||
|
|
||
|
<!-- 引入外部JS -->
|
||
|
<script src="https://gcore.jsdelivr.net/npm/layui@2.9.12/dist/layui.min.js"></script>
|
||
|
<!-- 仅引入页面所需的JS -->
|
||
|
<script src="../js/student-learning-center.js"></script>
|
||
|
<script>
|
||
|
// 页面专属JS代码
|
||
|
document.addEventListener('DOMContentLoaded', function() {
|
||
|
// 初始化Layui组件
|
||
|
layui.use(['form', 'element'], function() {
|
||
|
var form = layui.form;
|
||
|
var element = layui.element;
|
||
|
// 表单渲染
|
||
|
form.render();
|
||
|
});
|
||
|
|
||
|
// 图表筛选按钮点击事件
|
||
|
document.querySelectorAll('.chart-filter button').forEach(btn => {
|
||
|
btn.addEventListener('click', function() {
|
||
|
document.querySelectorAll('.chart-filter button').forEach(b => b.classList.remove('active'));
|
||
|
this.classList.add('active');
|
||
|
alert('图表数据筛选功能将在后续版本中实现');
|
||
|
});
|
||
|
});
|
||
|
|
||
|
// 搜索按钮点击事件
|
||
|
document.querySelector('.search-btn')?.addEventListener('click', function() {
|
||
|
const searchInput = document.querySelector('.search-input');
|
||
|
if (searchInput.value.trim()) {
|
||
|
alert('搜索功能将在后续版本中实现');
|
||
|
}
|
||
|
});
|
||
|
|
||
|
// 查看详情按钮点击事件
|
||
|
document.querySelectorAll('.layui-btn-xs').forEach(btn => {
|
||
|
btn.addEventListener('click', function() {
|
||
|
alert('学生详情功能将在后续版本中实现');
|
||
|
});
|
||
|
});
|
||
|
|
||
|
// 筛选标签点击事件
|
||
|
document.querySelectorAll('.filter-tag').forEach(tag => {
|
||
|
tag.addEventListener('click', function() {
|
||
|
this.classList.toggle('active');
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|