diff --git a/src/utils/titleConverter.ts b/src/utils/titleConverter.ts index bd0925a..047b52c 100644 --- a/src/utils/titleConverter.ts +++ b/src/utils/titleConverter.ts @@ -1,8 +1,8 @@ export const titleConverter = (title: string) => { try { const last = title.slice(4); - const abbr = ['S', 'C', 'A']; - const full = ['春招', '夏令营', '秋招']; + const abbr = ['S', 'C', 'A', 'O']; + const full = ['春招', '夏令营', '秋招', '日常招新']; const i = abbr.indexOf(last); if (i >= 0) { return title.slice(0, 4) + full[i];