30 lines
828 B
HTML
30 lines
828 B
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="icon.png" alt="logo" class="logo" />
|
|
<div class="title-box">
|
|
<h1>渠道应用开发部知识库</h1>
|
|
<a href="https://oa.ahrcu.com/sys/portal/page.jsp" target="_blank" class="oa-link">跳转OA</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="container">
|
|
<div class="search-bar">
|
|
<input id="searchInput" type="text" autocomplete="off" placeholder="请输入关键词(空格分隔)..." />
|
|
<button id="searchBtn">搜索</button>
|
|
</div>
|
|
|
|
<div id="historyTags" class="tag-history hidden"></div>
|
|
|
|
<ul id="results"></ul>
|
|
</div>
|
|
|
|
<script src="popup.js"></script>
|
|
</body>
|
|
</html> |