From aea193755a51a903a55c2854460edcb373a35cc2 Mon Sep 17 00:00:00 2001 From: Tomas <tomasysh@gmail.com> Date: 星期四, 27 一月 2022 08:30:58 +0800 Subject: [PATCH] fixed: [客戶-顧問清單] 沒有顯示最後更新日期的錯誤情形(commit# e2b8d02 的 side effect) --- PAMapp/components/Consultant/ConsultantCard.vue | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/PAMapp/components/Consultant/ConsultantCard.vue b/PAMapp/components/Consultant/ConsultantCard.vue index 643c895..416dcb8 100644 --- a/PAMapp/components/Consultant/ConsultantCard.vue +++ b/PAMapp/components/Consultant/ConsultantCard.vue @@ -45,7 +45,7 @@ :class="actionBtnStyle" >{{ actionBtnLabel }}</el-button> <div class="updateTime mt-10"> - {{ agentInfo.appointmentLastModifiedDate | formatDate }} + {{ (isAppointment ? agentInfo.appointmentLastModifiedDate : agentInfo.updateTime) | formatDate }} </div> </el-col> </el-row> -- Gitblit v1.8.0