From 035f953eb7a7ae3db8e4c2d8abf8a00036b1c8f4 Mon Sep 17 00:00:00 2001 From: winderica Date: Sat, 7 Nov 2020 22:42:50 +0800 Subject: [PATCH] =?UTF-8?q?Update:=20=E6=97=A5=E5=B8=B8=E6=8B=9B=E6=96=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/titleConverter.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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];