{{ site_branding.site_name }}
首页
全部商品
购物车
我的订单
我的钱包
地址管理
用户主页
{% if session.get("biz_is_merchant") %}
商家后台主页
{% else %}
商家入驻申请
{% endif %} {% if session.get("biz_is_admin") %}
管理员后台主页
{% endif %} {% if session.get("biz_user_id") %}
你好,{{ session.get("biz_display_name") }}
退出
{% else %}
登录
{% endif %}
搜索
搜索
商品 {{ counts.products }}
店铺 {{ counts.shops }}
用户 {{ counts.users }}
{% if not q %}
输入关键词后,可在商品、店铺、用户三种类型中切换查看结果。
{% elif search_type == 'products' %} {% if products %}
{% for p in products %}
{{ 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 %}
{% 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 %}