From efe605b99287617f9ff53e449c2e23949d2c9913 Mon Sep 17 00:00:00 2001
From: Tomas <tomasysh@gmail.com>
Date: 星期三, 27 四月 2022 16:34:12 +0800
Subject: [PATCH] fix#138195: 客戶接收到簡訊後,由以下連結重新預約,產生錯誤。

---
 PAMapp/pages/recommendConsultant/index.vue |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/PAMapp/pages/recommendConsultant/index.vue b/PAMapp/pages/recommendConsultant/index.vue
index 0a405f6..c23b58f 100644
--- a/PAMapp/pages/recommendConsultant/index.vue
+++ b/PAMapp/pages/recommendConsultant/index.vue
@@ -240,7 +240,10 @@
     //////////////////////////////////////////////////////////////////////
     mounted() {
       if (!!this.recommendConsultantItem) {
-        this.strictQueryDto = JSON.parse(this.recommendConsultantItem);
+        this.strictQueryDto = {
+          ...this.strictQueryDto,
+          ...JSON.parse(this.recommendConsultantItem)
+        };
       }
     }
 

--
Gitblit v1.8.0