From b1b1fa9058a8e7df07c25cf6d5be1678a042ab7e Mon Sep 17 00:00:00 2001 From: Mila <Mila@pollex.com.tw> Date: 星期二, 18 一月 2022 14:27:07 +0800 Subject: [PATCH] update: TODO#134382 [顧問管理流程] 刪除/編輯約訪紀錄 --- 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