Files
happy-life-star/开心APP网页代码v1.1/wnD97OS/chat-history.html
T
2025-07-26 00:37:18 +08:00

44 lines
1.9 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>聊天记录 - 开心APP</title>
<link rel="icon" href="https://r2.flowith.net/files/o/1752574406770-thoughtful_kaikai_character_generation_index_1@1024x1024.png">
<script src="https://cdn.tailwindcss.com?plugins=typography"></script>
<script src="https://unpkg.com/lucide@latest"></script>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&display=swap" rel="stylesheet">
</head>
<body class="bg-light-gray font-sans text-text-dark flex flex-col h-screen antialiased">
<!-- Header -->
<header class="bg-white shadow-md z-10 flex-shrink-0">
<div class="container mx-auto px-4 py-3 flex items-center justify-between">
<div class="flex items-center space-x-3">
<a href="chat.html" class="text-text-medium hover:text-tech-blue transition-colors">
<i data-lucide="chevron-left" class="w-6 h-6"></i>
</a>
<h1 class="text-lg font-bold text-text-dark">聊天记录</h1>
</div>
<button class="text-text-medium hover:text-tech-blue transition-colors">
<i data-lucide="search" class="w-5 h-5"></i>
</button>
</div>
</header>
<!-- Chat History List -->
<main id="history-list" class="flex-1 overflow-y-auto p-4 lg:p-6 space-y-3">
<!-- History items will be injected here by chat-history.js -->
</main>
<script type="module" src="js/shared.js"></script>
<script type="module" src="chat-history.js"></script>
</body>
</html>