{% extends "admin/base.html" %} {% block page_title %}门店管理{% endblock %} {% block content %}
{% for s in stores %} {% else %} {% endfor %}
序号门店名称所属连锁省市区域编码店员数状态操作
{{(page-1)*per_page + loop.index}} {{s.name}} {% if s.chain %}{{s.chain.name}}{% else %}-{% endif %} {% if s.province %}{{s.province}} {{s.city or ''}}{% else %}-{% endif %} {{s.region or '-'}}{{s.code or '-'}}{{s.staff_count}} {% if s.status=='active' %}正常{% else %}停用{% endif %} 编辑
暂无门店,点击右上角新增
{% if pages and pages > 1 %}
共 {{total}} 条 · 第 {{page}}/{{pages}} 页
{% endif %}
{% include "admin/_region_data.html" %} {% endblock %}