mobile . themes

This commit is contained in:
2026-03-05 12:57:55 +08:00
parent b5b9f7db06
commit c325007897
62 changed files with 835 additions and 150 deletions

View File

@@ -7,17 +7,17 @@
<h1 class="text-3xl font-extrabold bg-gradient-to-r from-blue-400 via-purple-400 to-pink-400 bg-clip-text text-transparent">考试管理</h1>
<div class="futuristic-card-dark overflow-hidden">
<div class="overflow-x-auto">
<table class="table-futuristic">
<div class="table-responsive">
<table class="table-futuristic" style="min-width: 1000px;">
<thead>
<tr>
<th>ID</th>
<th>标题</th>
<th>科目</th>
<th>出题人</th>
<th>状态</th>
<th>创建时间</th>
<th>操作</th>
<th style="min-width: 60px;">ID</th>
<th style="min-width: 200px;">标题</th>
<th style="min-width: 100px;">科目</th>
<th style="min-width: 120px;">出题人</th>
<th style="min-width: 100px;">状态</th>
<th style="min-width: 150px;">创建时间</th>
<th style="min-width: 180px;">操作</th>
</tr>
</thead>
<tbody id="exams-tbody"></tbody>
@@ -68,7 +68,7 @@ async function loadExams() {
const isAvailable = e.status === 'available';
html += `<tr>
<td>${e.id}</td>
<td class="font-medium text-slate-200 max-w-xs truncate">${e.title}</td>
<td class="font-medium text-slate-200" style="max-width: 200px; white-space: normal; word-wrap: break-word;">${e.title}</td>
<td class="text-slate-400">${e.subject || '-'}</td>
<td class="text-slate-400">${e.creator_name || '-'}</td>
<td><span class="badge-futuristic ${statusClass}">${statusText}</span></td>