From 8ece1a33dd0776e8a3cc94d3ac4faf8c6f7ff03c Mon Sep 17 00:00:00 2001 From: Mila <Mila@pollex.com.tw> Date: 星期一, 17 一月 2022 10:08:26 +0800 Subject: [PATCH] add: TODO#134181 dateTimePicker --- PAMapp/components/BackActionBar.vue | 10 ++++++++++ 1 files changed, 10 insertions(+), 0 deletions(-) diff --git a/PAMapp/components/BackActionBar.vue b/PAMapp/components/BackActionBar.vue index c1d51ab..598e73d 100644 --- a/PAMapp/components/BackActionBar.vue +++ b/PAMapp/components/BackActionBar.vue @@ -74,6 +74,16 @@ 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