{% extends "cms/base.html" %} {% block title %}需求管理 - ARIFU CMS{% endblock %} {% set active='inquiries' %} {% block content %}

📋 客户需求管理

{{ stats.pending }}
待处理
{{ stats.processing }}
跟进中
{{ stats.quoted }}
已报价
{{ stats.won }}
成交
{{ stats.total }}
总计
{{ stats.today }}
今日新增
状态: 全部 {% for s, label in [('pending','📝 待处理'),('processing','🔄 跟进中'),('quoted','📄 已报价'),('won','✅ 成交'),('lost','❌ 流失')] %} {{ label }} {% endfor %}
{% for i in inquiries %} {% endfor %}
ID行业公司联系人电话 状态时间操作
#{{ i.id }} {{ i.industry_type_icon | safe }} {{ i.industry_label or i.industry_type }} {{ i.company or '—' }} {{ i.contact_name or '—' }} {{ i.contact_phone or '—' }} {{ i.created_at[:10] }}
{% endblock %} {% block scripts %} {% endblock %}