From e471f81737e1e113f913ac615a0a368ab3ca2cd1 Mon Sep 17 00:00:00 2001
From: Mila <Mila@pollex.com.tw>
Date: 星期三, 19 一月 2022 18:09:41 +0800
Subject: [PATCH] update TODO#134465 約訪紀錄(查看更多)

---
 PAMapp/store/index.ts |   31 +------------------------------
 1 files changed, 1 insertions(+), 30 deletions(-)

diff --git a/PAMapp/store/index.ts b/PAMapp/store/index.ts
index 6b00e79..f322519 100644
--- a/PAMapp/store/index.ts
+++ b/PAMapp/store/index.ts
@@ -5,7 +5,7 @@
 import reviewsService from '~/shared/services/reviews.service';
 import { Consultant } from '~/shared/models/consultant.model';
 import { getFavoriteFromStorage, setFavoriteToStorage } from '~/shared/storageConsultant';
-import { AppointmentLog, InterviewRecord } from '~/shared/models/appointment.model';
+import { AppointmentLog } from '~/shared/models/appointment.model';
 import { AgentOfStrictQuery, StrictQueryParams } from '~/shared/models/strict-query.model';
 
 @Module
@@ -15,16 +15,6 @@
     myConsultantList: Consultant[] = [];
 
     myAppointmentReviewLogList: AppointmentLog[] = [];
-    interviewRecord: InterviewRecord = {
-        appointmentId   : 0,
-        content         : '',
-        createdBy       : '',
-        createdDate     : '',
-        id              : 0,
-        interviewDate   : '',
-        lastModifiedBy  : '',
-        lastModifiedDate: ''
-    }
 
     get isUserLogin() {
         return this.context.getters['localStorage/isUserLogin'];
@@ -48,25 +38,6 @@
     @Mutation
     updateMyAppointmentReviewLog(data: AppointmentLog[]) {
         this.myAppointmentReviewLogList = data;
-    }
-
-    @Mutation
-    updateInterviewRecord(data: InterviewRecord) {
-        this.interviewRecord = data;
-    }
-
-    @Mutation
-    clearInterviewRecord() {
-        this.interviewRecord = {
-            appointmentId   : 0,
-            content         : '',
-            createdBy       : '',
-            createdDate     : '',
-            id              : 0,
-            interviewDate   : '',
-            lastModifiedBy  : '',
-            lastModifiedDate: ''
-        }
     }
 
     @Action

--
Gitblit v1.8.0