From cef61a78de14401d7af7f4def01fb26ae867cc3e Mon Sep 17 00:00:00 2001 From: Tomas <tomasysh@gmail.com> Date: 星期四, 13 一月 2022 09:15:59 +0800 Subject: [PATCH] update: add pam-link-button--lg style class --- 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