This commit is contained in:
eric
2026-03-16 06:53:23 -05:00
parent c54d46517c
commit c54c236d1b
13 changed files with 538 additions and 359 deletions

View File

@@ -58,9 +58,12 @@ export function getPaymentConfig(): PaymentConfig {
};
}
/** 茶歇费 29元/人 */
export const JOIN_TEA_FEE = 2900;
export function getJoinPaymentConfig(): { amount: number; type: string } {
return {
amount: Number(process.env.PAYMENT_JOIN_AMOUNT) || MEETUP_JOIN_AMOUNT,
amount: Number(process.env.PAYMENT_JOIN_AMOUNT) || JOIN_TEA_FEE,
type: "salon",
};
}