2025-05-28 14:16:18 +08:00

50 lines
1.4 KiB
HTML

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<title>渠道应用开发部知识库</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div class="header">
<img src="../assets/icon.png" alt="logo" class="logo" />
<h1>渠道应用开发部知识库</h1>
<a href="https://oa.ahrcu.com/sys/portal/page.jsp" target="_blank" class="oa-link">跳转OA</a>
<div class="user-menu">
<div class="user-avatar" id="userAvatar">👤</div>
<div class="user-dropdown hidden" id="userDropdown">
<div id="userName">未登录</div>
<div id="logoutBtn" class="logout-option">退出登录</div>
</div>
</div>
</div>
<div class="container">
<div class="search-bar">
<input id="searchInput" type="text" autocomplete="off" placeholder="请输入关键词(空格分隔)..." />
<button id="searchBtn">搜索</button>
</div>
<div class="history-wrapper hidden" id="historyWrapper">
<div class="history-header">
<span>历史搜索:</span>
<img id="clearHistoryBtn" src="../assets/delete.png" title="清空历史记录" class="delete-icon" />
</div>
<div id="historyTags" class="tag-history"></div>
</div>
<!-- AnythingLLM结果区域 -->
<div id="llmResultContainer" class="llm-result-container hidden">
<div class="llm-title">智能助手答案</div>
<div id="llmResult"></div>
</div>
<ul id="results"></ul>
</div>
<script src="popup.js"></script>
</body>
</html>