{% extends "base.html" %} {% block title %}{{ customer.name }} - 产品匹配{% endblock %} {% block header_title %}{{ customer.name }} · 产品匹配{% endblock %} {% block content %}
{% for p, score, reasons, warnings in matches %}

{{ p.name }}

{{ score }}分

利率: {{ p.rate_min or '?' }}% - {{ p.rate_max or '?' }}%

额度: {{ p.amount_min or '?' }}万 - {{ p.amount_max or '?' }}万

期限: {{ p.term_options or '-' }}

{% if warnings %}
{% for w in warnings %}

⚠️ {{ w }}

{% endfor %}
{% endif %} {% if reasons %}
{% for r in reasons %}

✅ {{ r }}

{% endfor %}
{% endif %} {% if score == 0 %}

该客户不满足此产品的基本要求

{% endif %}
{% endfor %} {% if not matches %}

暂无匹配产品

{% endif %}
{% endblock %}