feat: 首页功能特点根据用户类型动态显示

- 访客/免费/VIP各等级显示不同可用功能
- 有权限显示,无权限显示
- 添加.gitignore排除uploads/outputs/cache目录
This commit is contained in:
2026-04-14 18:00:06 +08:00
parent d338522692
commit f55f2027e5
3 changed files with 45 additions and 4 deletions

View File

@@ -72,10 +72,13 @@
<h5 class="card-title">✨ 功能特点</h5>
<ul class="list-unstyled">
<li>✅ 自动翻译缓存,相同文件秒出结果</li>
<li>✅ 支持自定义翻译要求</li>
<li>✅ 原文译文对比查看</li>
<li>✅ 翻译历史记录</li>
{% for feat in features %}
<li>{% if feat.has %}✅{% else %}❌{% endif %} {{ feat.name }}</li>
{% endfor %}
</ul>
{% if not user or user.user_type == 'free' %}
<small class="text-muted">❌ 标记为会员专属功能,<a href="/pricing">升级会员</a>解锁</small>
{% endif %}
</div>
</div>
</div>