/** 赛事状态:后台展示用中文 */ export const COMPETITION_STATUS_LABEL: Record = { draft: '草稿', published: '已发布', signup_open: '报名进行中', signup_closed: '报名已截止', reviewing: '评审中', ended: '已结束', } export function competitionStatusLabel(code: string): string { return COMPETITION_STATUS_LABEL[code] ?? code }