用户权限配置

会员套餐配置 基础设置
{% for user_type, limits in limits_config.items() %}
{% if user_type == 'guest' %}👤 访客 {% elif user_type == 'free' %}🆓 免费用户 {% elif user_type == 'vip_basic' %}⭐ 基础会员 {% elif user_type == 'vip_pro' %}⭐⭐ 专业会员 {% elif user_type == 'vip_enterprise' %}👑 企业会员 {% endif %}
输入 0 表示无限制
输入 0 表示无限制
默认值:
次数: {{ default_limits.get(user_type, {}).get('daily_translations', 'N/A') }}
页数: {{ default_limits.get(user_type, {}).get('max_pages', 'N/A') }}
{% endfor %}