You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

20 lines
1.1 KiB

<section id="share-search-results-region" class="space-y-3">
{% for household in households %}
<article class="card">
<div class="card-body flex flex-col gap-3 sm:flex-row sm:items-center">
<a class="btn btn-secondary btn-sm w-full shrink-0 sm:order-first sm:w-auto" href="{{ url_for('share.edit_page', token=token, household_id=household.id, q=search_term) }}">点击编辑</a>
<div class="min-w-0 flex-1">
<h3 class="truncate text-base font-semibold text-neutral-800 dark:text-neutral-100">{{ household.head_name }}</h3>
<p class="mt-1 text-sm text-neutral-500 dark:text-neutral-400">{{ household_value_label('side', household.side) }}{% if household.phone %} · {{ household.phone }}{% endif %}</p>
<div class="mt-2">
<span class="status-badge status-badge-muted">户编码 {{ household.household_code }}</span>
</div>
</div>
</div>
</article>
{% else %}
<div class="card">
<div class="empty-state">{% if search_term %}未找到匹配户{% else %}请输入关键词开始搜索{% endif %}</div>
</div>
{% endfor %}
</section>