From 23a51718522d4b01e9f13532573a85ff27298c08 Mon Sep 17 00:00:00 2001
From: jack <jack.su@pollex.com.tw>
Date: 星期一, 31 七月 2023 17:26:31 +0800
Subject: [PATCH] Merge branch '2023_CR2' of ssh://dev.pollex.com.tw:29418/pcalife/PAM into 2023_CR2

---
 PAMapp/pages/questionnaire/_agentNo.vue |   22 +++++++++++++++++++++-
 1 files changed, 21 insertions(+), 1 deletions(-)

diff --git a/PAMapp/pages/questionnaire/_agentNo.vue b/PAMapp/pages/questionnaire/_agentNo.vue
index 4e55158..69dcb60 100644
--- a/PAMapp/pages/questionnaire/_agentNo.vue
+++ b/PAMapp/pages/questionnaire/_agentNo.vue
@@ -78,6 +78,12 @@
           :options="requirementOptions" />
       </div>
       <div class="pam-paragraph">
+        <div class="mdTxt">隢株岷�撘�</div>
+        <SingleSelectBtn class="mt-10"
+           :singleSelected.sync="myRequest.consultationMethod"
+           :options="consultationMethodOptions" />
+      </div>
+      <div class="pam-paragraph">
         <div class="mdTxt">����批</div>
         <SingleSelectBtn class="mt-10"
           :singleSelected.sync="myRequest.gender"
@@ -201,6 +207,17 @@
       }
     ];
 
+    consultationMethodOptions = [
+      {
+        title: '蝺��',
+        label: 'online'
+      },
+      {
+        title: '蝺��',
+        label: 'offline'
+      }
+    ];
+
     requirementOptions=[
       {
         title:'�摨瑁����',
@@ -300,6 +317,7 @@
         selectTimesOptions: [],
       }],
       agentNo: '',
+      consultationMethod: '',
     };
 
     showDrawer= false;
@@ -416,7 +434,9 @@
         return {
             ...appointmentInfo,
             hopeContactTime: hopeContactTime,
-            requirement: appointmentInfo.requirement.split(',')
+            requirement: appointmentInfo.requirement
+                        ? appointmentInfo.requirement.split(',')
+                        : []
           }
       } else {
         return null;

--
Gitblit v1.8.0