From abc1e8353491b3abf7d638cc11b48b137816382d Mon Sep 17 00:00:00 2001 From: Mila <Mila@pollex.com.tw> Date: 星期六, 22 一月 2022 16:01:12 +0800 Subject: [PATCH] fixed: TODO#134588 約訪時間/約訪記錄顯示必填「*」 --- PAMapp/components/Client/ClientCard.vue | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/PAMapp/components/Client/ClientCard.vue b/PAMapp/components/Client/ClientCard.vue index 2200975..294eb5f 100644 --- a/PAMapp/components/Client/ClientCard.vue +++ b/PAMapp/components/Client/ClientCard.vue @@ -268,7 +268,9 @@ } navigateToCloseAppointment(): void { - this.$router.push(`/appointment/${this.client.id}/close`); + this.getAppointmentDetail(this.client.id).then((_) => { + this.$router.push(`/appointment/${this.client.id}/close`); + }); } inviteReview(): void { -- Gitblit v1.8.0