From 3f2ccf2d8bc8ff6ca9fbc72e831b7b2eb4bc5f06 Mon Sep 17 00:00:00 2001 From: wayne <wayne8692wayne8692@gmail.com> Date: 星期四, 10 二月 2022 16:58:32 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/Phase3' into Phase3 --- PAMapp/components/BackActionBar.vue | 17 +++++++++++------ 1 files changed, 11 insertions(+), 6 deletions(-) diff --git a/PAMapp/components/BackActionBar.vue b/PAMapp/components/BackActionBar.vue index ab32947..29fc5ee 100644 --- a/PAMapp/components/BackActionBar.vue +++ b/PAMapp/components/BackActionBar.vue @@ -74,9 +74,6 @@ case 'accountSetting': featureLabel = '�犖撣唾�身摰�'; break; - case 'appointmentAgenda': - featureLabel = '�撠�赤����'; - break; case 'consultantAccountSetting': featureLabel = '���董�����'; break; @@ -86,11 +83,19 @@ case 'appointment': const appointmentFeatureLabel = this.$route.name.includes('close') ? '蝯��' - : this.isCloseAppointment ? '蝯����' : '������'; + : this.isCloseAppointment ? '蝯��敦' : '������'; const inInterview = this.$route.name.includes('interview'); const addNewInterview = this.$route.name.includes('new'); - if (inInterview) { - featureLabel = addNewInterview ? '�憓�赤蝝����' : '蝺刻摩蝝赤蝝����'; + const interviewList = this.$route.name.includes('interviewList'); + const recordList = this.$route.name.includes('recordList'); + if (interviewList) { + featureLabel = '蝝赤蝝����'; + } else if (recordList) { + featureLabel = '蝟餌絞�蝝����'; + } else if (inInterview) { + featureLabel = addNewInterview + ? '�憓�赤蝝����' + : '蝺刻摩蝝赤蝝����'; } else { featureLabel = appointmentFeatureLabel; } -- Gitblit v1.8.0