70 lines
2.1 KiB
HTML
70 lines
2.1 KiB
HTML
|
|
<!DOCTYPE html>
|
|||
|
|
<html lang="zh-CN">
|
|||
|
|
<head>
|
|||
|
|
<meta charset="utf-8">
|
|||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|||
|
|
<title>处方业务记录 · forward-go</title>
|
|||
|
|
<link rel="stylesheet" href="/t/static/t.css">
|
|||
|
|
</head>
|
|||
|
|
<body>
|
|||
|
|
<div class="app rx-app">
|
|||
|
|
<header class="topbar">
|
|||
|
|
<div class="brand">
|
|||
|
|
<span class="logo">Rx</span>
|
|||
|
|
<span class="title">处方 / 核销记录</span>
|
|||
|
|
<a href="/t" class="nav-link">政务云测试</a>
|
|||
|
|
</div>
|
|||
|
|
<div class="connect-bar">
|
|||
|
|
<button type="button" class="btn sm" id="btn-refresh">刷新</button>
|
|||
|
|
<button type="button" class="btn sm" id="btn-rebuild">重建索引</button>
|
|||
|
|
<span id="toast" class="rx-toast"></span>
|
|||
|
|
</div>
|
|||
|
|
</header>
|
|||
|
|
|
|||
|
|
<div class="rx-tabs">
|
|||
|
|
<button type="button" class="tab active" data-biz="pdf">PDF 上传</button>
|
|||
|
|
<button type="button" class="tab" data-biz="recipe">在线处方</button>
|
|||
|
|
<button type="button" class="tab" data-biz="verification">处方核销</button>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<main class="rx-main">
|
|||
|
|
<table class="rx-table" id="records">
|
|||
|
|
<thead>
|
|||
|
|
<tr>
|
|||
|
|
<th>时间</th>
|
|||
|
|
<th>通道</th>
|
|||
|
|
<th>HTTP</th>
|
|||
|
|
<th>msgCode</th>
|
|||
|
|
<th>trace</th>
|
|||
|
|
<th>fileId / 处方提示</th>
|
|||
|
|
<th>状态</th>
|
|||
|
|
<th>耗时</th>
|
|||
|
|
<th>操作</th>
|
|||
|
|
</tr>
|
|||
|
|
</thead>
|
|||
|
|
<tbody id="tbody"></tbody>
|
|||
|
|
</table>
|
|||
|
|
<p class="rx-hint" id="hint"></p>
|
|||
|
|
</main>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<div class="rx-drawer" id="drawer" hidden>
|
|||
|
|
<div class="rx-drawer-inner">
|
|||
|
|
<header class="rx-drawer-head">
|
|||
|
|
<h3>api-log 详情</h3>
|
|||
|
|
<button type="button" class="btn sm" id="btn-close-drawer">关闭</button>
|
|||
|
|
</header>
|
|||
|
|
<div class="rx-drawer-body">
|
|||
|
|
<pre id="detail-view" class="code-block"></pre>
|
|||
|
|
<pre id="replay-view" class="code-block" style="margin-top:0.5rem;display:none"></pre>
|
|||
|
|
</div>
|
|||
|
|
<footer class="rx-drawer-foot">
|
|||
|
|
<button type="button" class="btn send primary" id="btn-retry">重试(出站块2)</button>
|
|||
|
|
</footer>
|
|||
|
|
</div>
|
|||
|
|
</div>
|
|||
|
|
|
|||
|
|
<script src="/t/static/prescription.js"></script>
|
|||
|
|
</body>
|
|||
|
|
</html>
|