{plan.icon}
{plan.name}
{plan.recommended && (
推荐
)}
{currentPlan === planKey && (
当前套餐
)}
{simulatedPlan === planKey && currentPlan !== planKey && (
预览中
)}
{billingCycle === 'yearly' && planKey !== 'free' && (
¥{plan.price * 12}/年
省{getDiscount()}%
)}
¥{getDisplayPrice(plan.price)}
/{billingCycle === 'yearly' ? '年' : '月'}
{billingCycle === 'yearly' && planKey !== 'free' && (
平均 ¥{Math.round(getDisplayPrice(plan.price) / 12)}/月
)}
{plan.description}
{plan.features.slice(0, 4).map((f: string, i: number) => (
{f}
))}
{plan.features.length > 4 && (
+{plan.features.length - 4} 更多功能
)}
{plan.limitations.length > 0 && (
{plan.limitations.slice(0, 2).map((l: string, i: number) => (
{l}
))}
)}