From 95d0e5524c3ab1e55a9909e2c38e7cc35901220f Mon Sep 17 00:00:00 2001
From: 劉鈞霖 <benson@gmail.com>
Date: 星期三, 15 十二月 2021 14:52:58 +0800
Subject: [PATCH] [ Update ] :新增 pamService class 將 consultant interface 移出

---
 PAMapp/components/phoneContactTimePicker.vue |   35 ++++++++++++++++-------------------
 1 files changed, 16 insertions(+), 19 deletions(-)

diff --git a/PAMapp/components/phoneContactTimePicker.vue b/PAMapp/components/phoneContactTimePicker.vue
index 973eacb..9382daa 100644
--- a/PAMapp/components/phoneContactTimePicker.vue
+++ b/PAMapp/components/phoneContactTimePicker.vue
@@ -33,7 +33,6 @@
 
     <PopUpFrame class="pam-popUpFrame"
       :isOpen.sync="isOpenByStep_1"
-      :drawerSize="drawerSize"
       :dialogWidth="dialogWidth">
         <div class="pam-popUp-title">{{popUpTitle}}</div>
           <MultiSelectBtn class="mt-30"
@@ -41,7 +40,7 @@
             :options="weekOptions.options"
             :nameOfSelectAll="weekOptions.selectAll">
           </MultiSelectBtn>
-          <div class="pam-popUp-confirm-bolck pam-paragraph">
+          <div class="pam-popUp-confirm-bolck mt-30">
             <button class="pam-select-confirm"
               :class="[initPickerControl.selectWeekOptions.length?'el-button--primary' :'is-disabled']"
               @click="confirmByStep_1">
@@ -52,7 +51,6 @@
 
     <PopUpFrame class="pam-popUpFrame"
       :isOpen.sync="isOpenByStep_2"
-      :drawerSize="drawerSize"
       :dialogWidth="dialogWidth">
         <div class="pam-popUp-title">{{popUpTitle}}</div>
         <MultiSelectBtn class="mt-30"
@@ -60,7 +58,7 @@
           :options="timesOfDayOptions.options"
           :nameOfSelectAll="timesOfDayOptions.selectAll">
         </MultiSelectBtn>
-        <div class="pam-popUp-confirm-bolck pam-paragraph">
+        <div class="pam-popUp-confirm-bolck mt-30">
           <button class="pam-select-confirm"
             :class="[initPickerControl.selectTimesOptions.length ?'el-button--primary' :'is-disabled']"
             @click="confirmByStep_2">
@@ -82,31 +80,31 @@
       selectAll:'瘥予',
       options:[
         {
-          title:'蝳格��',
-          label:'蝳格��'
+          title:'����',
+          label:'����'
         },
          {
-          title:'蝳格���',
-          label:'蝳格���'
+          title:'�����',
+          label:'�����'
         },
          {
-          title:'蝳格���',
-          label:'蝳格���'
+          title:'�����',
+          label:'�����'
         },
          {
-          title:'蝳格���',
-          label:'蝳格���'
+          title:'�����',
+          label:'�����'
         },
          {
-          title:'蝳格���',
-          label:'蝳格���'
+          title:'�����',
+          label:'�����'
         }, {
-          title:'蝳格�',
-          label:'蝳格�'
+          title:'���',
+          label:'���'
         },
          {
-          title:'蝳格�',
-          label:'蝳格�'
+          title:'���',
+          label:'���'
         },
       ],
     };
@@ -131,7 +129,6 @@
         }
       ],
     };
-    private drawerSize="'50%'";
     private dialogWidth="376px";
     private selectedSchedule!:scheduleDto;
 

--
Gitblit v1.8.0