feat(regulatory): 完善复核前端入口

This commit is contained in:
2026-06-07 09:40:18 +08:00
parent d39e3fe2d5
commit 4e46f27c28
5 changed files with 110 additions and 21 deletions

View File

@@ -237,6 +237,23 @@
{% if batch.risk_label %}
<p class="workflow-risk-summary">{{ batch.risk_label }}</p>
{% endif %}
{% if batch.workflow_type == "regulatory_review" %}
<div class="workflow-card-actions">
<button
type="button"
data-rectification-action="full-review"
data-batch-no="{{ batch.batch_no }}"
>整包复核</button>
<button
type="button"
data-rectification-action="issue-review"
data-batch-no="{{ batch.batch_no }}"
>缺失项复核</button>
</div>
<p class="workflow-record-summary">
通知 {{ batch.notification_count|default:0 }} · 复核记录 {{ batch.review_record_count|default:0 }}
</p>
{% endif %}
{% if batch.error_message %}
<p class="workflow-error">{{ batch.error_message }}</p>
{% endif %}