feat: 落地打赏(个人码捐赠)模式并将付费面改为免费+赞助(无ICP证合规)

- 新增 Donation 模型/迁移/后端 API(GET,POST /donations)
- 新增前端 /donate 页:收款码+感谢留言+感谢墙
- 会员页/技能广场/用量包 下架付费,改免费开放+赞助入口
- 沙箱用量耗尽引导至 /donate 赞助
- 导航与页脚新增 赞助/联盟返佣 入口,补充 i18n
This commit is contained in:
TradeMate Dev
2026-07-11 15:02:08 +08:00
parent 31cc1e02ce
commit 00a3904eba
17 changed files with 600 additions and 538 deletions
+12
View File
@@ -718,3 +718,15 @@ model AffiliateClick {
@@index([linkId])
@@map("affiliate_clicks")
}
model Donation {
id Int @id @default(autoincrement())
name String?
message String? @db.VarChar(280)
channel String @default("ALIPAY")
amount Float?
createdAt DateTime @default(now())
@@index([createdAt])
@@map("donations")
}