From dc0e7366e96ce773ae1690f6db28e03a684bb45e Mon Sep 17 00:00:00 2001
From: Jack <jack.su@pollex.com.tw>
Date: 星期二, 18 一月 2022 19:50:12 +0800
Subject: [PATCH] Merge branch 'Phase3' of ssh://dev.pollex.com.tw:29418/pcalife/PAM into Phase3

---
 PAMapp/components/BackActionBar.vue |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/PAMapp/components/BackActionBar.vue b/PAMapp/components/BackActionBar.vue
index c1d51ab..0f628c3 100644
--- a/PAMapp/components/BackActionBar.vue
+++ b/PAMapp/components/BackActionBar.vue
@@ -68,12 +68,25 @@
         case 'accountSetting':
           featureLabel = '�犖撣唾�身摰�';
           break;
+        case 'appointmentAgenda':
+          featureLabel = '�撠�赤����';
+          break;
         case 'consultantAccountSetting':
           featureLabel = '���董�����';
           break;
         case 'faq':
           featureLabel = 'F&Q 撣貉����';
           break;
+        case 'appointment':
+          const appointmentFeatureLabel = this.$route.name.includes('close') ? '蝯��' : '������';
+          const inInterview = this.$route.name.includes('interview');
+          const addNewInterview = this.$route.name.includes('new');
+          if (inInterview) {
+            featureLabel = addNewInterview ? '�憓�赤蝝����' : '蝺刻摩蝝赤蝝����';
+          } else {
+            featureLabel = appointmentFeatureLabel;
+          }
+          break;
       }
       return featureLabel;
     } else {

--
Gitblit v1.8.0