Files
tougao/application/api/view/author/select_orcid.html
2026-06-05 11:11:16 +08:00

49 lines
2.1 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>选择作者 ORCID</title>
{include file="author/_styles" /}
</head>
<body>
<div class="page">
<div class="topbar">
<a href="{$form_action}">← 返回查询页</a>
</div>
<div class="card">
<div class="card-header" style="text-align:left;border-bottom:none;padding-bottom:0;margin-bottom:20px;">
<h1 class="card-title" style="text-align:left;">匹配到 {$candidate_count} 位作者</h1>
<p class="card-subtitle" style="text-align:left;margin-top:8px;">
检索姓名:<strong>{$submitted_name|htmlspecialchars}</strong>
{notempty name="submitted_institution"} · 参考机构:<strong>{$submitted_institution|htmlspecialchars}</strong>{/notempty}
</p>
</div>
<div class="alert alert-info">
已按<strong>姓名</strong>检索 ORCID。若填写了机构<span class="badge badge-success">机构一致</span> 的候选项排在最前,请点击确认后生成报告。
</div>
<div class="candidate-list">
{volist name="candidates" id="item"}
<a class="candidate-card {$item.matched_class}" href="{$item.report_url|htmlspecialchars}">
<div class="candidate-avatar">{$item.avatar_letter|htmlspecialchars}</div>
<span class="candidate-action">生成报告 →</span>
<div class="candidate-name">{$item.display_name|default='(姓名未知)'|htmlspecialchars}</div>
<div class="candidate-orcid">{$item.orcid|htmlspecialchars}</div>
{notempty name="item.affiliations_text"}
<div class="candidate-affil">{$item.affiliations_text|htmlspecialchars}</div>
{/notempty}
<div class="candidate-meta">
{eq name="item.institution_matched" value="1"}<span class="badge badge-success">机构一致</span>{/eq}
{notempty name="item.sources_text"}<span class="badge badge-info">{$item.sources_text|htmlspecialchars}</span>{/notempty}
</div>
</a>
{/volist}
</div>
</div>
</div>
</body>
</html>