修正獎勵評審資訊、評分資訊

This commit is contained in:
2025-09-27 17:24:26 +08:00
parent b06fd94c99
commit 88c3fde372
11 changed files with 2399 additions and 459 deletions

View File

@@ -83,6 +83,8 @@ export interface Award {
appId?: string // 個人賽和團隊賽使用
teamId?: string // 團隊賽和提案賽使用
appName?: string
teamName?: string
proposalTitle?: string
creator: string
awardType: "gold" | "silver" | "bronze" | "popular" | "innovation" | "technical" | "custom"
awardName: string
@@ -91,7 +93,7 @@ export interface Award {
month: number
icon: string
customAwardTypeId?: string // 如果是自定義獎項類型
competitionType: "individual" | "team" // 競賽類型
competitionType: "individual" | "team" | "proposal" // 競賽類型
rank: number // 0 for non-ranking awards, 1-3 for top 3
category: "innovation" | "technical" | "practical" | "popular" | "teamwork" | "solution" | "creativity"
}