会员套餐配置

添加套餐 用户类型配置 基础设置
{% for plan in plans %}
{% if plan.is_recommended %} 推荐 {% endif %} {% if plan.is_system %} 系统 {% else %} 自定义 {% endif %} {{ plan.display_name }}
{% if plan.is_active %}上架{% else %}下架{% endif %}
{% if plan.original_price and plan.original_price > plan.price %} ¥{{ plan.original_price }} {% endif %} ¥{{ plan.price }}
/ {% if plan.period == 'month' %}月{% elif plan.period == 'quarter' %}季{% elif plan.period == 'year' %}年{% else %}{{ plan.period_days }}天{% endif %}
{% if plan.description %}

{{ plan.description }}

{% endif %} {% if plan.user_type_key %}
购买后升级为: {{ plan.user_type_key }}
{% endif %}
套餐标识 {{ plan.plan_key }}
周期天数 {{ plan.period_days }} 天
编辑 {% if not plan.is_system %} {% endif %}
{% endfor %}
{% if not plans %}

数据库中暂无会员套餐配置

{% endif %}