feat: add user medal selection and display

This commit is contained in:
Tim
2025-08-10 00:13:54 +08:00
parent 6aedec7a9b
commit 041496cf98
14 changed files with 202 additions and 20 deletions

View File

@@ -0,0 +1,9 @@
export const medalTitles = {
COMMENT: '评论达人',
POST: '发帖达人',
SEED: '种子用户'
}
export function getMedalTitle(type) {
return medalTitles[type] || ''
}