File size: 28,035 Bytes
3aac27a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 |
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>实验室管理系统</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#1e40af',
secondary: '#3b82f6',
light: '#f0f3f8',
dark: '#0f172a',
grey: '#f1f5f9',
menu: '#e2e8f0'
}
}
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&display=swap');
body {
font-family: 'Noto Sans SC', sans-serif;
@apply bg-gray-50;
overflow-x: hidden;
}
.header-gradient {
background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
}
.nav-shadow {
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.card-shadow {
box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}
.active-nav-item {
@apply bg-blue-50 text-primary font-medium border-l-4 border-primary;
}
.status-tag {
@apply text-sm px-2 py-1 rounded-full;
}
.status-pending {
@apply bg-gray-100 text-gray-800;
}
.status-in-progress {
@apply bg-green-100 text-green-800;
}
.status-completed {
@apply bg-blue-100 text-blue-800;
}
.status-paused {
@apply bg-yellow-100 text-yellow-800;
}
.dropdown {
position: relative;
display: inline-block;
}
.dropdown-content {
display: none;
position: absolute;
background-color: white;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1000;
right: 0;
border-radius: 0.375rem;
overflow: hidden;
}
.dropdown-content a {
@apply block px-4 py-2 text-sm text-gray-700 hover:bg-blue-50 transition-colors;
}
.dropdown-content a:hover {
@apply text-primary;
}
.filter-card {
transition: all 0.3s ease;
}
.filter-card:hover {
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
@media (min-width: 640px) {
.table-container {
overflow-x: auto;
}
.table {
min-width: 768px;
}
}
</style>
</head>
<body class="flex flex-col min-h-screen">
<!-- 顶部导航栏 -->
<header class="w-full header-gradient text-white">
<div class="max-w-screen-2xl mx-auto">
<div class="flex justify-between items-center py-4 px-6">
<!-- 系统名称 -->
<div class="flex items-center">
<i class="fas fa-flask text-2xl mr-3"></i>
<h1 class="text-2xl font-bold tracking-wide">实验室管理系统</h1>
</div>
<!-- 用户信息及下拉菜单 -->
<div class="dropdown relative">
<button id="userDropdownBtn" class="flex items-center space-x-2 focus:outline-none">
<div class="w-9 h-9 bg-blue-100 rounded-full flex items-center justify-center">
<span class="text-primary font-semibold">LM</span>
</div>
<span class="font-medium">李明</span>
<i class="fas fa-chevron-down text-sm"></i>
</button>
<div id="userDropdown" class="dropdown-content hidden mt-2">
<a href="#"><i class="fas fa-key mr-2"></i>修改密码</a>
<a href="#"><i class="fas fa-sign-out-alt mr-2"></i>退出系统</a>
</div>
</div>
</div>
</div>
</header>
<div class="flex flex-1">
<!-- 左侧导航菜单 -->
<nav class="bg-menu w-64 min-h-screen py-6 px-4 hidden md:block">
<ul class="space-y-1">
<li>
<a href="#" class="active-nav-item flex items-center py-3 px-4 hover:bg-blue-50 transition-colors">
<i class="fas fa-calendar-alt mr-3 text-primary"></i>
<span>实验计划管理</span>
</a>
</li>
<li>
<a href="#" class="flex items-center py-3 px-4 hover:bg-blue-50 transition-colors">
<i class="fas fa-tasks mr-3 text-gray-500"></i>
<span>实验任务管理</span>
</a>
</li>
<li>
<a href="#" class="flex items-center py-3 px-4 hover:bg-blue-50 transition-colors">
<i class="fas fa-microscope mr-3 text-gray-500"></i>
<span>实验设备管理</span>
</a>
</li>
<li>
<a href="#" class="flex items-center py-3 px-4 hover:bg-blue-50 transition-colors">
<i class="fas fa-map-marker-alt mr-3 text-gray-500"></i>
<span>实验场地管理</span>
</a>
</li>
<li>
<a href="#" class="flex items-center py-3 px-4 hover:bg-blue-50 transition-colors">
<i class="fas fa-chart-bar mr-3 text-gray-500"></i>
<span>数据统计分析</span>
</a>
</li>
<li>
<a href="#" class="flex items-center py-3 px-4 hover:bg-blue-50 transition-colors">
<i class="fas fa-cog mr-3 text-gray-500"></i>
<span>系统设置</span>
</a>
</li>
</ul>
</nav>
<!-- 主内容区域 -->
<main class="flex-1 bg-gray-50 p-6">
<!-- 面包屑导航 -->
<div class="mb-4">
<nav class="flex text-sm" aria-label="Breadcrumb">
<ol class="inline-flex items-center space-x-1 md:space-x-3">
<li class="inline-flex items-center">
<a href="#" class="text-gray-600 hover:text-primary">
<i class="fas fa-home mr-2"></i>
首页
</a>
</li>
<li>
<div class="flex items-center">
<i class="fas fa-chevron-right text-gray-400 text-xs mx-2"></i>
<span class="text-primary font-medium">实验计划管理</span>
</div>
</li>
</ol>
</nav>
</div>
<div class="flex justify-between items-center mb-5">
<h2 class="text-2xl font-bold text-gray-800">实验计划管理</h2>
</div>
<!-- 筛选区域 -->
<div class="filter-card bg-white rounded-lg shadow card-shadow p-6 mb-6">
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-5 gap-4">
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">时间范围</label>
<div class="flex">
<input type="date" class="flex-1 w-full px-3 py-2 border border-gray-300 rounded-l focus:outline-none focus:ring-2 focus:ring-blue-200">
<span class="flex items-center px-3 bg-gray-100 border-t border-b border-gray-300 text-gray-500">~</span>
<input type="date" class="flex-1 w-full px-3 py-2 border border-gray-300 rounded-r focus:outline-none focus:ring-2 focus:ring-blue-200">
</div>
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">实验类别</label>
<select class="w-full px-3 py-2 border border-gray-300 rounded focus:outline-none focus:ring-2 focus:ring-blue-200">
<option value="">全部类别</option>
<option value="env">环境试验</option>
<option value="emc">电磁兼容</option>
<option value="met">计量检定</option>
</select>
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">所属型号</label>
<input type="text" placeholder="输入型号搜索" class="w-full px-3 py-2 border border-gray-300 rounded focus:outline-none focus:ring-2 focus:ring-blue-200">
</div>
<div>
<label class="block text-sm font-medium text-gray-700 mb-1">状态</label>
<div class="grid grid-cols-2 gap-2">
<label class="flex items-center">
<input type="checkbox" class="h-4 w-4 text-primary focus:ring-primary border-gray-300 rounded">
<span class="ml-2 text-sm text-gray-700">未开始</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="h-4 w-4 text-primary focus:ring-primary border-gray-300 rounded">
<span class="ml-2 text-sm text-gray-700">进行中</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="h-4 w-4 text-primary focus:ring-primary border-gray-300 rounded">
<span class="ml-2 text-sm text-gray-700">已完成</span>
</label>
<label class="flex items-center">
<input type="checkbox" class="h-4 w-4 text-primary focus:ring-primary border-gray-300 rounded">
<span class="ml-2 text-sm text-gray-700">暂停</span>
</label>
</div>
</div>
<div class="flex items-end space-x-3">
<button class="flex-1 bg-primary hover:bg-blue-700 text-white py-2 px-4 rounded transition-colors">
<i class="fas fa-search mr-2"></i>搜索
</button>
<button class="flex-1 bg-gray-200 hover:bg-gray-300 text-gray-700 py-2 px-4 rounded transition-colors">
<i class="fas fa-redo mr-2"></i>重置
</button>
</div>
</div>
</div>
<!-- 操作按钮区域 -->
<div class="flex justify-between items-center mb-4">
<div class="text-sm text-gray-500">共 152 条记录</div>
<div class="space-x-3">
<button class="bg-primary hover:bg-blue-700 text-white py-2 px-4 rounded transition-colors">
<i class="fas fa-plus-circle mr-2"></i>新建计划
</button>
<button class="bg-gray-200 hover:bg-gray-300 text-gray-700 py-2 px-4 rounded transition-colors">
<i class="fas fa-download mr-2"></i>导出计划
</button>
</div>
</div>
<!-- 计划列表表格 -->
<div class="table-container">
<div class="bg-white rounded-lg shadow card-shadow overflow-hidden">
<table class="w-full table-auto">
<thead class="bg-gray-100">
<tr>
<th class="px-5 py-3 text-left text-sm font-semibold text-gray-600 tracking-wider">序号</th>
<th class="px-5 py-3 text-left text-sm font-semibold text-gray-600 tracking-wider">实验计划名称</th>
<th class="px-5 py-3 text-left text-sm font-semibold text-gray-600 tracking-wider">所属型号</th>
<th class="px-5 py-3 text-left text-sm font-semibold text-gray-600 tracking-wider">实验类别</th>
<th class="px-5 py-3 text-left text-sm font-semibold text-gray-600 tracking-wider">起止时间</th>
<th class="px-5 py-3 text-left text-sm font-semibold text-gray-600 tracking-wider">状态</th>
<th class="px-5 py-3 text-left text-sm font-semibold text-gray-600 tracking-wider">负责人</th>
<th class="px-5 py-3 text-right text-sm font-semibold text-gray-600 tracking-wider">操作</th>
</tr>
</thead>
<tbody class="divide-y divide-gray-200">
<!-- 示例数据行 -->
<tr class="hover:bg-blue-50 transition-colors">
<td class="px-5 py-4 whitespace-nowrap text-sm text-gray-500">1</td>
<td class="px-5 py-4 whitespace-nowrap">
<div class="text-sm font-medium text-gray-900">高温强度测试计划A1</div>
</td>
<td class="px-5 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">XJ-78</div>
</td>
<td class="px-5 py-4 whitespace-nowrap">
<div class="text-sm text-gray-500">环境试验</div>
</td>
<td class="px-5 py-4 whitespace-nowrap">
<div class="text-sm text-gray-500">2025-07-01 至 2025-07-20</div>
</td>
<td class="px-5 py-4 whitespace-nowrap">
<span class="status-tag status-in-progress">进行中</span>
</td>
<td class="px-5 py-4 whitespace-nowrap text-sm text-gray-500">张工</td>
<td class="px-5 py-4 whitespace-nowrap text-right text-sm">
<div class="space-x-4">
<a href="#" class="text-secondary hover:text-blue-700" title="查看"><i class="fas fa-eye"></i></a>
<a href="#" class="text-secondary hover:text-blue-700" title="编辑"><i class="fas fa-edit"></i></a>
<a href="#" class="text-red-500 hover:text-red-700" title="删除"><i class="fas fa-trash-alt"></i></a>
<a href="#" class="text-green-500 hover:text-green-700" title="生成任务"><i class="fas fa-tasks"></i></a>
</div>
</td>
</tr>
<!-- 更多数据行 -->
<tr class="hover:bg-blue-50 transition-colors">
<td class="px-5 py-4 whitespace-nowrap text-sm text-gray-500">2</td>
<td class="px-5 py-4 whitespace-nowrap">
<div class="text-sm font-medium text-gray-900">电磁辐射测试实验</div>
</td>
<td class="px-5 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">RD-42</div>
</td>
<td class="px-5 py-4 whitespace-nowrap">
<div class="text-sm text-gray-500">电磁兼容</div>
</td>
<td class="px-5 py-4 whitespace-nowrap">
<div class="text-sm text-gray-500">2025-07-05 至 2025-07-30</div>
</td>
<td class="px-5 py-4 whitespace-nowrap">
<span class="status-tag status-paused">暂停</span>
</td>
<td class="px-5 py-4 whitespace-nowrap text-sm text-gray-500">王工</td>
<td class="px-5 py-4 whitespace-nowrap text-right text-sm">
<div class="space-x-4">
<a href="#" class="text-secondary hover:text-blue-700"><i class="fas fa-eye"></i></a>
<a href="#" class="text-secondary hover:text-blue-700"><i class="fas fa-edit"></i></a>
<a href="#" class="text-red-500 hover:text-red-700"><i class="fas fa-trash-alt"></i></a>
<a href="#" class="text-green-500 hover:text-green-700"><i class="fas fa-tasks"></i></a>
</div>
</td>
</tr>
<tr class="hover:bg-blue-50 transition-colors">
<td class="px-5 py-4 whitespace-nowrap text-sm text-gray-500">3</td>
<td class="px-5 py-4 whitespace-nowrap">
<div class="text-sm font-medium text-gray-900">计量设备定期检定</div>
</td>
<td class="px-5 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">ME-7C</div>
</td>
<td class="px-5 py-4 whitespace-nowrap">
<div class="text-sm text-gray-500">计量检定</div>
</td>
<td class="px-5 py-4 whitespace-nowrap">
<div class="text-sm text-gray-500">2025-08-10 至 2025-08-25</div>
</td>
<td class="px-5 py-4 whitespace-nowrap">
<span class="status-tag status-pending">未开始</span>
</td>
<td class="px-5 py-4 whitespace-nowrap text-sm text-gray-500">李工</td>
<td class="px-5 py-4 whitespace-nowrap text-right text-sm">
<div class="space-x-4">
<a href="#" class="text-secondary hover:text-blue-700"><i class="fas fa-eye"></i></a>
<a href="#" class="text-secondary hover:text-blue-700"><i class="fas fa-edit"></i></a>
<a href="#" class="text-red-500 hover:text-red-700"><i class="fas fa-trash-alt"></i></a>
<a href="#" class="text-green-500 hover:text-green-700"><i class="fas fa-tasks"></i></a>
</div>
</td>
</tr>
<tr class="hover:bg-blue-50 transition-colors">
<td class="px-5 py-4 whitespace-nowrap text-sm text-gray-500">4</td>
<td class="px-5 py-4 whitespace-nowrap">
<div class="text-sm font-medium text-gray-900">低温性能测试实验</div>
</td>
<td class="px-5 py-4 whitespace-nowrap">
<div class="text-sm text-gray-900">CT-33</div>
</td>
<td class="px-5 py-4 whitespace-nowrap">
<div class="text-sm text-gray-500">环境试验</div>
</td>
<td class="px-5 py-4 whitespace-nowrap">
<div class="text-sm text-gray-500">2025-06-15 至 2025-06-28</div>
</td>
<td class="px-5 py-4 whitespace-nowrap">
<span class="status-tag status-completed">已完成</span>
</td>
<td class="px-5 py-4 whitespace-nowrap text-sm text-gray-500">陈工</td>
<td class="px-5 py-4 whitespace-nowrap text-right text-sm">
<div class="space-x-4">
<a href="#" class="text-secondary hover:text-blue-700"><i class="fas fa-eye"></i></a>
<a href="#" class="text-secondary hover:text-blue-700"><i class="fas fa-edit"></i></a>
<a href="#" class="text-red-500 hover:text-red-700"><i class="fas fa-trash-alt"></i></a>
<a href="#" class="text-green-500 hover:text-green-700"><i class="fas fa-tasks"></i></a>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<!-- 分页控制器 -->
<div class="mt-6 flex flex-col sm:flex-row items-center justify-between">
<div class="mb-4 sm:mb-0">
<p class="text-sm text-gray-700">
显示 <span class="font-medium">1</span> 到 <span class="font-medium">4</span> / 共 <span class="font-medium">152</span> 条记录
</p>
</div>
<div class="flex items-center space-x-3">
<select class="text-sm p-2 border border-gray-300 rounded focus:outline-none focus:ring-2 focus:ring-blue-200">
<option value="10">10条/页</option>
<option value="20" selected>20条/页</option>
<option value="50">50条/页</option>
</select>
<nav class="inline-flex">
<a href="#" class="py-2 px-3 ml-0 mr-1 rounded bg-gray-200 hover:bg-gray-300">
<i class="fas fa-angle-left"></i>
</a>
<a href="#" class="py-2 px-4 hover:bg-blue-100 hover:text-primary text-white bg-primary rounded">1</a>
<a href="#" class="py-2 px-4 hover:bg-blue-100 hover:text-primary text-gray-600 rounded ml-1">2</a>
<a href="#" class="py-2 px-4 hover:bg-blue-100 hover:text-primary text-gray-600 rounded ml-1">3</a>
<span class="py-2 px-4 text-gray-600 ml-1">...</span>
<a href="#" class="py-2 px-4 hover:bg-blue-100 hover:text-primary text-gray-600 rounded ml-1">8</a>
<a href="#" class="py-2 px-4 hover:bg-blue-100 hover:text-primary text-gray-600 rounded ml-1 mr-1">9</a>
<a href="#" class="py-2 px-3 rounded bg-gray-200 hover:bg-gray-300">
<i class="fas fa-angle-right"></i>
</a>
</nav>
</div>
</div>
</main>
</div>
<!-- 移动端底部导航栏 -->
<nav class="fixed bottom-0 left-0 right-0 bg-white shadow-md md:hidden">
<div class="flex justify-between p-3">
<a href="#" class="flex flex-col items-center px-4 py-2 text-primary">
<i class="fas fa-calendar-alt text-xl"></i>
<span class="text-xs mt-1">计划</span>
</a>
<a href="#" class="flex flex-col items-center px-4 py-2 text-gray-500">
<i class="fas fa-tasks text-xl"></i>
<span class="text-xs mt-1">任务</span>
</a>
<a href="#" class="flex flex-col items-center px-4 py-2 text-gray-500">
<i class="fas fa-microscope text-xl"></i>
<span class="text-xs mt-1">设备</span>
</a>
<a href="#" class="flex flex-col items-center px-4 py-2 text-gray-500">
<i class="fas fa-user text-xl"></i>
<span class="text-xs mt-1">我的</span>
</a>
</div>
</nav>
<script>
// 用户下拉菜单显示控制
const dropdownBtn = document.getElementById('userDropdownBtn');
const dropdownMenu = document.getElementById('userDropdown');
dropdownBtn.addEventListener('click', function() {
dropdownMenu.classList.toggle('hidden');
});
// 关闭下拉菜单当点击页面其他区域时
document.addEventListener('click', function(event) {
if (!dropdownBtn.contains(event.target) && !dropdownMenu.contains(event.target)) {
dropdownMenu.classList.add('hidden');
}
});
// 响应式菜单选项高亮
const menuItems = document.querySelectorAll('nav a');
menuItems.forEach(item => {
item.addEventListener('click', function() {
menuItems.forEach(i => i.classList.remove('active-nav-item'));
this.classList.add('active-nav-item');
});
});
// 模拟数据加载中的效果
document.addEventListener('DOMContentLoaded', function() {
// 模拟加载完成
setTimeout(function() {
document.body.classList.remove('opacity-0');
}, 300);
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=maomaobj/lab1" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html> |