+
+
+ VIP会员
+ (到期自动续费,可随时取消)
+
+
每月送3000积分,每日早上畅聊到晚上
+
+
+
+
+ {plans.map((plan) => {
+ const selected = selectedPlanId === plan.id;
+ return (
+
+ );
+ })}
+
+
+ );
+}
diff --git a/src/app/subscription/subscription-screen.helpers.ts b/src/app/subscription/subscription-screen.helpers.ts
index a0747b74..f8dcb957 100644
--- a/src/app/subscription/subscription-screen.helpers.ts
+++ b/src/app/subscription/subscription-screen.helpers.ts
@@ -1,6 +1,8 @@
import type { PaymentPlan } from "@/data/dto/payment";
+import type { CoinsOfferPlanView } from "./components/subscription-coins-offer-section";
import type { SubscriptionPlanView } from "./components/subscription-plan-card";
+import type { VipOfferPlanView } from "./components/subscription-vip-offer-section";
export type SubscriptionType = "vip" | "voice";
@@ -9,17 +11,29 @@ export const SUBSCRIPTION_BANNER_TITLES: Record