85 lines
3.6 KiB
HTML
85 lines
3.6 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>信函查询系统</title>
|
|
<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@400;500;600;700&family=Orbitron:wght@500;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="../css/tech-query.css">
|
|
<link rel="stylesheet" href="../css/notice-banner.css">
|
|
<script src="https://cdn.jsdelivr.net/npm/@supabase/supabase-js@2"></script>
|
|
</head>
|
|
<body>
|
|
<main class="page-shell">
|
|
<section class="page-header">
|
|
<div class="hero-card">
|
|
<span class="eyebrow">Letter Search</span>
|
|
<h1>信函流转查询台</h1>
|
|
<p>可按收件人、关键字与寄送时间进行检索,统一展示寄达信息与内容摘要,方便快速确认记录。</p>
|
|
<div class="hero-meta">
|
|
<span class="meta-chip">检索字段:收件人 / 内容关键字</span>
|
|
<span class="meta-chip">输出内容:目的地 / 时间 / 摘要</span>
|
|
</div>
|
|
</div>
|
|
<aside class="stat-card">
|
|
<div>
|
|
<div class="stat-label">Module</div>
|
|
<div class="stat-value">LETTER</div>
|
|
</div>
|
|
<p></p>
|
|
</aside>
|
|
</section>
|
|
|
|
<section class="panel-card">
|
|
<div class="panel-title-row">
|
|
<div>
|
|
<h2 class="panel-title">检索条件</h2>
|
|
<div class="panel-subtitle">多字段组合查询,快速过滤信函记录</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="search-grid compact">
|
|
<div class="form-group">
|
|
<label class="form-label" for="recipientTerm">收件人</label>
|
|
<input id="recipientTerm" class="tech-input" placeholder="输入收件人姓名">
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="form-label" for="searchTerm">编号 / 关键字</label>
|
|
<input id="searchTerm" class="tech-input" placeholder="输入内容关键字">
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="form-label" for="dateFrom">开始日期</label>
|
|
<input id="dateFrom" type="date" class="tech-input">
|
|
</div>
|
|
<div class="form-group">
|
|
<label class="form-label" for="dateTo">结束日期</label>
|
|
<input id="dateTo" type="date" class="tech-input">
|
|
</div>
|
|
<button id="searchBtn" class="tech-button">执行查询</button>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="panel-card results-card">
|
|
<div class="panel-title-row">
|
|
<div>
|
|
<h2 class="panel-title">查询结果</h2>
|
|
<div class="panel-subtitle">寄送路径与摘要信息集中展示</div>
|
|
</div>
|
|
</div>
|
|
<div id="searchResults" class="results-shell">
|
|
<div class="empty-state">设置检索条件后即可查询信函流转记录。</div>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
|
|
<footer class="page-footer">
|
|
<p>© 2026 BI Intelligent Query Interface</p>
|
|
</footer>
|
|
|
|
<script src="../js/xinhan-index.js"></script>
|
|
<script src="../js/notice-banner.js"></script>
|
|
</body>
|
|
</html>
|