搜索

{% if not q %}
输入关键词后,可在商品、店铺、用户三种类型中切换查看结果。
{% elif search_type == 'products' %} {% if products %}
{% for p in products %}
{{ p.product_name }}
{{ p.product_name }}
{{ p.category_name or '未分类' }}
店铺:{% if p.shop_slug %}{{ p.shop_name }}{% else %}{{ p.shop_name or '暂无店铺' }}{% endif %}
{{ p.intro }}
¥ {{ '%.2f'|format(p.price) }}
查看商品
{% endfor %}
{% else %}
没有找到相关商品。
{% endif %} {% elif search_type == 'shops' %} {% if shops %}
{% for s in shops %}
{{ s.shop_name }}
销量:{{ s.sold_count }} 营收:¥ {{ '%.2f'|format(s.gross_revenue) }}
{{ s.intro }}
进入店铺主页
{% endfor %}
{% else %}
没有找到相关店铺。
{% endif %} {% else %} {% if users %}
{% for u in users %}
{{ u.display_name }}
{% if u.is_merchant %}
商家用户
{% else %}
普通用户
{% endif %}
{{ u.display_name }}
{% if u.is_merchant and u.shop_slug %}
关联店铺:{{ u.shop_name }}
进入店铺主页 {% else %}
当前没有公开主页
{% endif %}
{% endfor %}
{% else %}
没有找到相关用户。
{% endif %} {% endif %}