From 771d43f1f81238e9f6fb86d90c11b2f7b949d143 Mon Sep 17 00:00:00 2001 From: Tomas <tomasysh@gmail.com> Date: 星期一, 17 一月 2022 09:02:37 +0800 Subject: [PATCH] fixed: 調整 constactStatus enum 對應的值 --- PAMapp/components/BackActionBar.vue | 8 +++++++- 1 files changed, 7 insertions(+), 1 deletions(-) diff --git a/PAMapp/components/BackActionBar.vue b/PAMapp/components/BackActionBar.vue index f154324..598e73d 100644 --- a/PAMapp/components/BackActionBar.vue +++ b/PAMapp/components/BackActionBar.vue @@ -76,7 +76,13 @@ break; case 'appointment': const appointmentFeatureLabel = this.$route.name.includes('close') ? '蝯��' : '������'; - featureLabel = appointmentFeatureLabel; + const inInterview = this.$route.name.includes('interview'); + const addNewInterview = this.$route.name.includes('new'); + if (inInterview) { + featureLabel = addNewInterview ? '�憓�赤蝝����' : '蝺刻摩蝝赤蝝����'; + } else { + featureLabel = appointmentFeatureLabel; + } break; } return featureLabel; -- Gitblit v1.8.0