快速搜索

支持自然语言搜索,自动映射到料号、名称、规格和备注组合查询

{% if error %}

{{ error }}

{% endif %} {% if notice %}

{{ notice }}

{% endif %}

出库只需要输入数量,系统会自动扣减库存并记录统计。

当前宽松度: {{ fuzziness_profiles[fuzziness].label }}(严格更精准,宽松更容易召回)

{% if search_plan %}

搜索解析

模式: {{ 'AI解析' if search_plan.mode == 'ai' else '规则解析' }}

{{ search_plan.summary }}

{% if search_parse_notice %}

{{ search_parse_notice }}

{% endif %}
料号

{{ ' / '.join(search_plan.field_map.part_no) if search_plan.field_map.part_no else '-' }}

名称

{{ ' / '.join(search_plan.field_map.name) if search_plan.field_map.name else '-' }}

规格

{{ ' / '.join(search_plan.field_map.specification) if search_plan.field_map.specification else '-' }}

备注

{{ ' / '.join(search_plan.field_map.note) if search_plan.field_map.note else '-' }}

{% endif %}

搜索结果

{% for row in results %} {% set c = row.component %} {% else %} {% endfor %}
料号 名称 规格 库存 位置 匹配说明 跳转 出库
{{ c.part_no }} {{ c.name }} {{ c.specification or '-' }} {{ c.quantity }} {{ row.box_name }} / {{ row.slot_code }}
{{ row.match_summary }}
综合分: {{ '%.1f'|format(row.match_score) }}
{% if row.matched_terms %}
{% for term in row.matched_terms %} {{ term }} {% endfor %}
{% endif %} {% if row.fuzzy_matches %}
模糊命中详情
    {% for item in row.fuzzy_matches %}
  • {{ item.term }} ({{ item.score }})
  • {% endfor %}
{% endif %}
进入位置
{% if keyword %}未找到匹配元件{% else %}先输入关键字进行搜索{% endif %}