{% extends "base.html" %} {% block title %}产品匹配 - 本地贷款CRM{% endblock %} {% block header_title %}客户 × 产品匹配{% endblock %} {% block content %}
产品列表 客户匹配 利率敏感
全部客户 意向客户 已拒绝客户
{% if enriched %}
{% for item in enriched %}
{{ item.customer.name }} {{ item.customer.avatar_stage }}
{{ item.matches|length }}个匹配产品
{% for p, score, reasons, warnings in item.matches[:6] %}
{{ p.name }} {{ score }}分

利率: {{ p.rate_min or '?' }}%-{{ p.rate_max or '?' }}% · {{ p.amount_min or '?' }}-{{ p.amount_max or '?' }}万

{% if warnings %}
{% for w in warnings[:2] %}

⚠ {{ w[:60] }}

{% endfor %}
{% endif %} {% if reasons %}
{% for r in reasons[:1] %}

✓ {{ r[:60] }}

{% endfor %}
{% endif %} 详细分析 →
{% endfor %}
{% endfor %}
{% else %}

🔍

暂无匹配结果。请先添加产品并完善客户画像。

管理产品
{% endif %} {% endblock %}