feat(subscription): add VIP renewal price notice

This commit is contained in:
2026-07-15 11:50:44 +08:00
parent a7c1574e58
commit 3f3d1a0203
4 changed files with 42 additions and 1 deletions
+12 -1
View File
@@ -99,10 +99,16 @@ export function SubscriptionScreen({
() =>
getFirstRechargeOfferView({
isFirstRecharge: payment.isFirstRecharge,
subscriptionType,
vipPlans: vipOfferPlans,
coinPlans: directCoinsPlans,
}),
[directCoinsPlans, payment.isFirstRecharge, vipOfferPlans],
[
directCoinsPlans,
payment.isFirstRecharge,
subscriptionType,
vipOfferPlans,
],
);
const selectedPlan = findSelectedSubscriptionPlan({
@@ -207,6 +213,11 @@ export function SubscriptionScreen({
<p className={styles.firstRechargeSubtitle}>
{firstRechargeOffer.subtitle}
</p>
{firstRechargeOffer.renewalNotice ? (
<p className={styles.firstRechargeRenewalNotice}>
{firstRechargeOffer.renewalNotice}
</p>
) : null}
</div>
</section>
) : null}